Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / browser / components / migration / src / nsOmniWebProfileMigrator.cpp
blob7036abca7e471fd7662f4c080e84e395bf8531d8
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is The Browser Profile Migrator.
17 * The Initial Developer of the Original Code is Ben Goodger.
18 * Portions created by the Initial Developer are Copyright (C) 2004
19 * the Initial Developer. All Rights Reserved.
21 * Contributor(s):
22 * Ben Goodger <ben@bengoodger.com>
23 * Benjamin Smedberg <benjamin@smedbergs.us>
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
39 #include "nsBrowserProfileMigratorUtils.h"
40 #include "nsOmniWebProfileMigrator.h"
41 #include "nsIObserverService.h"
42 #include "nsIProfileMigrator.h"
43 #include "nsIServiceManager.h"
44 #include "nsISupportsArray.h"
45 #include "nsISupportsPrimitives.h"
46 #include "nsServiceManagerUtils.h"
48 ///////////////////////////////////////////////////////////////////////////////
49 // nsOmniWebProfileMigrator
51 NS_IMPL_ISUPPORTS1(nsOmniWebProfileMigrator, nsIBrowserProfileMigrator)
53 nsOmniWebProfileMigrator::nsOmniWebProfileMigrator()
55 mObserverService = do_GetService("@mozilla.org/observer-service;1");
58 nsOmniWebProfileMigrator::~nsOmniWebProfileMigrator()
62 ///////////////////////////////////////////////////////////////////////////////
63 // nsIBrowserProfileMigrator
65 NS_IMETHODIMP
66 nsOmniWebProfileMigrator::Migrate(PRUint16 aItems, nsIProfileStartup* aStartup, const PRUnichar* aProfile)
68 nsresult rv = NS_OK;
70 NOTIFY_OBSERVERS(MIGRATION_STARTED, nsnull);
72 NOTIFY_OBSERVERS(MIGRATION_ENDED, nsnull);
74 return rv;
77 NS_IMETHODIMP
78 nsOmniWebProfileMigrator::GetMigrateData(const PRUnichar* aProfile,
79 PRBool aReplace,
80 PRUint16* aResult)
82 *aResult = 0; // XXXben implement me
83 return NS_OK;
86 NS_IMETHODIMP
87 nsOmniWebProfileMigrator::GetSourceExists(PRBool* aResult)
89 *aResult = PR_FALSE; // XXXben implement me
91 return NS_OK;
94 NS_IMETHODIMP
95 nsOmniWebProfileMigrator::GetSourceHasMultipleProfiles(PRBool* aResult)
97 *aResult = PR_FALSE;
98 return NS_OK;
101 NS_IMETHODIMP
102 nsOmniWebProfileMigrator::GetSourceProfiles(nsISupportsArray** aResult)
104 *aResult = nsnull;
105 return NS_OK;
108 NS_IMETHODIMP
109 nsOmniWebProfileMigrator::GetSourceHomePageURL(nsACString& aResult)
111 aResult.Truncate();
112 return NS_OK;
114 ///////////////////////////////////////////////////////////////////////////////
115 // nsOmniWebProfileMigrator