| Index: chrome/browser/ui/webui/extensions/extension_settings_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/extension_settings_handler.cc b/chrome/browser/ui/webui/extensions/extension_settings_handler.cc
|
| similarity index 99%
|
| rename from chrome/browser/ui/webui/options/extension_settings_handler.cc
|
| rename to chrome/browser/ui/webui/extensions/extension_settings_handler.cc
|
| index f04b6a563da7bb24a53ea3471adc0d361725fa16..9ce000545f0bb0baff472cbfe45ab98549542514 100644
|
| --- a/chrome/browser/ui/webui/options/extension_settings_handler.cc
|
| +++ b/chrome/browser/ui/webui/extensions/extension_settings_handler.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/browser/ui/webui/options/extension_settings_handler.h"
|
| +#include "chrome/browser/ui/webui/extensions/extension_settings_handler.h"
|
|
|
| #include "base/auto_reset.h"
|
| #include "base/base64.h"
|
| @@ -33,6 +33,7 @@
|
| #include "chrome/common/pref_names.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "content/public/browser/notification_service.h"
|
| +#include "content/public/browser/notification_source.h"
|
| #include "content/public/browser/notification_types.h"
|
| #include "content/public/browser/render_process_host.h"
|
| #include "content/public/browser/render_view_host.h"
|
| @@ -266,8 +267,6 @@ void ExtensionSettingsHandler::HandleToggleDeveloperMode(
|
| profile->GetPrefs()->GetBoolean(prefs::kExtensionsUIDeveloperMode);
|
| profile->GetPrefs()->SetBoolean(
|
| prefs::kExtensionsUIDeveloperMode, !developer_mode);
|
| - if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDisableUberPage))
|
| - HandleRequestExtensionsData(NULL);
|
| }
|
|
|
| void ExtensionSettingsHandler::HandleInspectMessage(const ListValue* args) {
|
| @@ -515,9 +514,6 @@ void ExtensionSettingsHandler::MultiFilesSelected(
|
|
|
| void ExtensionSettingsHandler::GetLocalizedValues(
|
| DictionaryValue* localized_strings) {
|
| - RegisterTitle(localized_strings, "extensionSettings",
|
| - IDS_MANAGE_EXTENSIONS_SETTING_WINDOWS_TITLE);
|
| -
|
| localized_strings->SetString("extensionSettingsVisitWebsite",
|
| l10n_util::GetStringUTF16(IDS_EXTENSIONS_VISIT_WEBSITE));
|
|
|
|
|