summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/migration/src/nsProfileMigrator.h
blob: d25a9989e938ac00b4bb32b5510ad2758c1368e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "nsIFile.h"
#include "nsIProfileMigrator.h"
#include "nsIMailProfileMigrator.h"
#include "nsIServiceManager.h"
#include "nsIToolkitProfile.h"
#include "nsIToolkitProfileService.h"
#include "nsCOMPtr.h"
#include "nsDirectoryServiceDefs.h"

#include "nsString.h"

#define NS_THUNDERBIRD_PROFILEIMPORT_CID             \
  {                                                  \
    0xb3c78baf, 0x3a52, 0x41d2, {                    \
      0x97, 0x18, 0xc3, 0x19, 0xbe, 0xf9, 0xaf, 0xfc \
    }                                                \
  }

class nsProfileMigrator final : public nsIProfileMigrator {
 public:
  NS_DECL_NSIPROFILEMIGRATOR
  NS_DECL_ISUPPORTS

  nsProfileMigrator(){};

 protected:
  ~nsProfileMigrator(){};

  nsresult GetDefaultMailMigratorKey(
      nsACString& key, nsCOMPtr<nsIMailProfileMigrator>& mailMigrator);
};