Index: chrome/browser/chromeos/preferences.cc |
=================================================================== |
--- chrome/browser/chromeos/preferences.cc (revision 106059) |
+++ chrome/browser/chromeos/preferences.cc (working copy) |
@@ -17,7 +17,6 @@ |
#include "chrome/browser/chromeos/input_method/input_method_util.h" |
#include "chrome/browser/chromeos/input_method/xkeyboard.h" |
#include "chrome/browser/chromeos/login/login_utils.h" |
-#include "chrome/browser/chromeos/proxy_config_service_impl.h" |
#include "chrome/browser/chromeos/system/touchpad_settings.h" |
#include "chrome/browser/prefs/pref_member.h" |
#include "chrome/browser/prefs/pref_service.h" |
@@ -27,6 +26,7 @@ |
#include "chrome/common/pref_names.h" |
#include "content/common/notification_details.h" |
#include "content/common/notification_source.h" |
+#include "googleurl/src/gurl.h" |
#include "unicode/timezone.h" |
namespace chromeos { |
@@ -275,8 +275,6 @@ |
enable_screen_lock_.Init(prefs::kEnableScreenLock, prefs, this); |
- use_shared_proxies_.Init(prefs::kUseSharedProxies, prefs, this); |
- |
// Initialize preferences to currently saved state. |
NotifyPrefChanged(NULL); |
@@ -466,11 +464,6 @@ |
CrosLibrary::Get()->GetPowerLibrary()->EnableScreenLock( |
enable_screen_lock_.GetValue()); |
} |
- |
- if (!pref_name || *pref_name == prefs::kUseSharedProxies) { |
- g_browser_process->chromeos_proxy_config_service_impl()-> |
- UISetUseSharedProxies(use_shared_proxies_.GetValue()); |
- } |
} |
void Preferences::SetLanguageConfigBoolean(const char* section, |