set_prefs
git-svn-id: svn://10.0.0.236/trunk@254598 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
5a29e8066d
commit
930ff4b907
@ -63,6 +63,7 @@ CPPSRCS = \
|
||||
PlugletsDir.cpp \
|
||||
Registry.cpp \
|
||||
PlugletViewFactory.cpp \
|
||||
XPCOMShutdownObserver.cpp \
|
||||
$(NULL)
|
||||
|
||||
ifeq ($(OS_ARCH),Linux)
|
||||
@ -96,6 +97,7 @@ endif #DARWIN
|
||||
|
||||
INCLUDES += \
|
||||
-I$(DIST)/include/string \
|
||||
-I$(DIST)/include/pref \
|
||||
-I$(DIST)/include/plugin \
|
||||
-I$(DIST)/include/xpcom \
|
||||
-I$(DIST)/include/xpcom_obsolete \
|
||||
|
||||
83
mozilla/java/plugins/src/XPCOMShutdownObserver.cpp
Executable file
83
mozilla/java/plugins/src/XPCOMShutdownObserver.cpp
Executable file
@ -0,0 +1,83 @@
|
||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* 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.org code.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Sun Microsystems,
|
||||
* Inc. Portions created by Sun are
|
||||
* Copyright (C) 1999 Sun Microsystems, Inc. All
|
||||
* Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*/
|
||||
|
||||
#include "XPCOMShutdownObserver.h"
|
||||
#include "nsAppDirectoryServiceDefs.h"
|
||||
#include "nsIPref.h"
|
||||
#include "nsIFile.h"
|
||||
#include "nsFileSpec.h"
|
||||
|
||||
#define kPluginRegistryFilename NS_LITERAL_CSTRING("pluginreg.dat")
|
||||
|
||||
XPCOMShutdownObserver::XPCOMShutdownObserver() {
|
||||
NS_INIT_ISUPPORTS();
|
||||
|
||||
}
|
||||
|
||||
XPCOMShutdownObserver::~XPCOMShutdownObserver(void) {
|
||||
}
|
||||
|
||||
NS_IMPL_ISUPPORTS1(XPCOMShutdownObserver, nsIObserver);
|
||||
NS_IMETHODIMP
|
||||
XPCOMShutdownObserver::Observe(nsISupports *aSubject, const char *aTopic,
|
||||
const PRUnichar *aData)
|
||||
{
|
||||
nsresult rv;
|
||||
nsCOMPtr<nsIPref> prefs(do_GetService(NS_PREF_CONTRACTID, &rv));
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
rv = prefs->SetBoolPref("plugin.allow_alien_star_handler", PR_TRUE);
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
prefs->SetBoolPref("plugin.default_plugin_disabled", PR_FALSE);
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
prefs->SetBoolPref("plugin.override_internal_types", PR_TRUE);
|
||||
}
|
||||
}
|
||||
|
||||
nsCOMPtr<nsIProperties> dirService
|
||||
(do_GetService(NS_DIRECTORY_SERVICE_CONTRACTID, &rv));
|
||||
nsCOMPtr<nsIFile> file;
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
rv = dirService->Get(NS_APP_USER_PROFILE_50_DIR,
|
||||
NS_GET_IID(nsIFile),
|
||||
getter_AddRefs(file));
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
rv = file->AppendNative(NS_LITERAL_CSTRING("prefs.js"));
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
rv = prefs->SavePrefFile(file);
|
||||
}
|
||||
}
|
||||
|
||||
// Delete the pluginreg.dat
|
||||
rv = dirService->Get(NS_APP_APPLICATION_REGISTRY_DIR,
|
||||
NS_GET_IID(nsIFile),
|
||||
getter_AddRefs(file));
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
rv = file->AppendNative(kPluginRegistryFilename);
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
rv = file->Remove(PR_FALSE);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return rv;
|
||||
|
||||
}
|
||||
|
||||
41
mozilla/java/plugins/src/XPCOMShutdownObserver.h
Executable file
41
mozilla/java/plugins/src/XPCOMShutdownObserver.h
Executable file
@ -0,0 +1,41 @@
|
||||
/*
|
||||
* 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.org code.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Sun Microsystems,
|
||||
* Inc. Portions created by Sun are
|
||||
* Copyright (C) 1999 Sun Microsystems, Inc. All
|
||||
* Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*/
|
||||
#ifndef __XPCOMShutdownObserver_h__
|
||||
#define __XPCOMShutdownObserver_h__
|
||||
|
||||
#include "nsIObserver.h"
|
||||
|
||||
class XPCOMShutdownObserver : public nsIObserver {
|
||||
public:
|
||||
XPCOMShutdownObserver();
|
||||
virtual ~XPCOMShutdownObserver(void);
|
||||
NS_DECL_ISUPPORTS
|
||||
NS_DECL_NSIOBSERVER
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif /* __XPCOMShutdownObserver_h__ */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user