bug 124029 Roaming - 4.x-HTTP-compatible
patch 134896 r=ben.bucksch@beonex.com sr=bz-vacation@mit.edu git-svn-id: svn://10.0.0.236/trunk@149424 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -37,6 +37,7 @@ SDK_XPIDLSRCS = \
|
||||
XPIDLSRCS = \
|
||||
nsIProfileInternal.idl \
|
||||
nsIProfileStartupListener.idl \
|
||||
nsISessionRoaming.idl \
|
||||
$(NULL)
|
||||
|
||||
ifeq ($(OS_ARCH),WINNT)
|
||||
|
||||
59
mozilla/profile/public/nsISessionRoaming.idl
Normal file
59
mozilla/profile/public/nsISessionRoaming.idl
Normal file
@@ -0,0 +1,59 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is Mozilla Roaming code.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Ben Bucksch <http://www.bucksch.org> of
|
||||
* Beonex <http://www.beonex.com>
|
||||
* Portions created by the Initial Developer are Copyright (C) 2002
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
* Or maybe not. I believe that interfaces should be free ;-).
|
||||
*
|
||||
* Contributor(s):
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#include "nsISupports.idl"
|
||||
#include "nsIFile.idl"
|
||||
|
||||
/**
|
||||
* nsISessionRoaming
|
||||
*
|
||||
* Implementation should be a service.
|
||||
*
|
||||
* see extensions/sraoming/README.txt
|
||||
*
|
||||
* @status EXPERIMENTAL
|
||||
* @version 1.0
|
||||
*/
|
||||
|
||||
[scriptable, uuid(ab62465c-494c-446e-b671-930bb98a7bc4)]
|
||||
interface nsISessionRoaming : nsISupports {
|
||||
void BeginSession();
|
||||
void EndSession();
|
||||
boolean isRoaming(); // should be here?
|
||||
};
|
||||
@@ -80,6 +80,7 @@
|
||||
#include "nsHashtable.h"
|
||||
#include "nsIAtom.h"
|
||||
#include "nsProfileDirServiceProvider.h"
|
||||
#include "nsISessionRoaming.h"
|
||||
|
||||
// Interfaces Needed
|
||||
#include "nsIDocShell.h"
|
||||
@@ -156,6 +157,7 @@ static nsProfileDirServiceProvider *gDirServiceProvider = nsnull;
|
||||
static NS_DEFINE_CID(kPrefMigrationCID, NS_PREFMIGRATION_CID);
|
||||
static NS_DEFINE_CID(kPrefConverterCID, NS_PREFCONVERTER_CID);
|
||||
|
||||
#define NS_SESSIONROAMING_CONTRACTID "@mozilla.org/profile/session-roaming;1"
|
||||
|
||||
|
||||
/*
|
||||
@@ -1258,6 +1260,13 @@ nsProfile::SetCurrentProfile(const PRUnichar * aCurrentProfile)
|
||||
return NS_ERROR_ABORT;
|
||||
}
|
||||
|
||||
// Roaming download
|
||||
// Tolerate errors. Maybe the roaming extension isn't installed.
|
||||
nsCOMPtr <nsISessionRoaming> roam =
|
||||
do_GetService(NS_SESSIONROAMING_CONTRACTID, &rv);
|
||||
if (NS_SUCCEEDED(rv))
|
||||
roam->BeginSession();
|
||||
|
||||
// Phase 4: Notify observers that the profile has changed - Here they respond to new profile
|
||||
observerService->NotifyObservers(subject, "profile-do-change", context.get());
|
||||
if (mProfileChangeFailed)
|
||||
@@ -1344,6 +1353,13 @@ NS_IMETHODIMP nsProfile::ShutDownCurrentProfile(PRUint32 shutDownType)
|
||||
observerService->NotifyObservers(subject, "profile-before-change", context.get());
|
||||
}
|
||||
|
||||
// Roaming upload
|
||||
// Tolerate errors. Maybe the roaming extension isn't installed.
|
||||
nsCOMPtr <nsISessionRoaming> roam =
|
||||
do_GetService(NS_SESSIONROAMING_CONTRACTID, &rv);
|
||||
if (NS_SUCCEEDED(rv))
|
||||
roam->EndSession();
|
||||
|
||||
gDirServiceProvider->SetProfileDir(nsnull);
|
||||
UpdateCurrentProfileModTime(PR_TRUE);
|
||||
mCurrentProfileAvailable = PR_FALSE;
|
||||
|
||||
Reference in New Issue
Block a user