Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: chrome/common/extensions/chrome_manifest_handlers.cc

Issue 183883033: Move bookmarks_ui manifest key from chrome_settings_overrides to chrome_ui_overrides (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/extensions/chrome_manifest_handlers.h" 5 #include "chrome/common/extensions/chrome_manifest_handlers.h"
6 6
7 #include "chrome/common/extensions/api/bluetooth/bluetooth_manifest_handler.h" 7 #include "chrome/common/extensions/api/bluetooth/bluetooth_manifest_handler.h"
8 #include "chrome/common/extensions/api/commands/commands_handler.h" 8 #include "chrome/common/extensions/api/commands/commands_handler.h"
9 #include "chrome/common/extensions/api/extension_action/browser_action_handler.h " 9 #include "chrome/common/extensions/api/extension_action/browser_action_handler.h "
10 #include "chrome/common/extensions/api/extension_action/page_action_handler.h" 10 #include "chrome/common/extensions/api/extension_action/page_action_handler.h"
(...skipping 16 matching lines...) Expand all
27 #include "chrome/common/extensions/api/url_handlers/url_handlers_parser.h" 27 #include "chrome/common/extensions/api/url_handlers/url_handlers_parser.h"
28 #include "chrome/common/extensions/manifest_handlers/app_isolation_info.h" 28 #include "chrome/common/extensions/manifest_handlers/app_isolation_info.h"
29 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h" 29 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h"
30 #include "chrome/common/extensions/manifest_handlers/content_scripts_handler.h" 30 #include "chrome/common/extensions/manifest_handlers/content_scripts_handler.h"
31 #include "chrome/common/extensions/manifest_handlers/externally_connectable.h" 31 #include "chrome/common/extensions/manifest_handlers/externally_connectable.h"
32 #include "chrome/common/extensions/manifest_handlers/icons_handler.h" 32 #include "chrome/common/extensions/manifest_handlers/icons_handler.h"
33 #include "chrome/common/extensions/manifest_handlers/minimum_chrome_version_chec ker.h" 33 #include "chrome/common/extensions/manifest_handlers/minimum_chrome_version_chec ker.h"
34 #include "chrome/common/extensions/manifest_handlers/nacl_modules_handler.h" 34 #include "chrome/common/extensions/manifest_handlers/nacl_modules_handler.h"
35 #include "chrome/common/extensions/manifest_handlers/settings_overrides_handler. h" 35 #include "chrome/common/extensions/manifest_handlers/settings_overrides_handler. h"
36 #include "chrome/common/extensions/manifest_handlers/theme_handler.h" 36 #include "chrome/common/extensions/manifest_handlers/theme_handler.h"
37 #include "chrome/common/extensions/manifest_handlers/ui_overrides_handler.h"
37 #include "chrome/common/extensions/manifest_url_handler.h" 38 #include "chrome/common/extensions/manifest_url_handler.h"
38 #include "chrome/common/extensions/mime_types_handler.h" 39 #include "chrome/common/extensions/mime_types_handler.h"
39 #include "extensions/common/manifest_handlers/requirements_info.h" 40 #include "extensions/common/manifest_handlers/requirements_info.h"
40 41
41 namespace extensions { 42 namespace extensions {
42 43
43 void RegisterChromeManifestHandlers() { 44 void RegisterChromeManifestHandlers() {
44 DCHECK(!ManifestHandler::IsRegistrationFinalized()); 45 DCHECK(!ManifestHandler::IsRegistrationFinalized());
45 #if defined(ENABLE_EXTENSIONS) 46 #if defined(ENABLE_EXTENSIONS)
46 (new AppIsolationHandler)->Register(); 47 (new AppIsolationHandler)->Register();
(...skipping 23 matching lines...) Expand all
70 (new PageActionHandler)->Register(); 71 (new PageActionHandler)->Register();
71 (new PluginsHandler)->Register(); 72 (new PluginsHandler)->Register();
72 (new RequirementsHandler)->Register(); // Depends on plugins. 73 (new RequirementsHandler)->Register(); // Depends on plugins.
73 (new SettingsOverridesHandler)->Register(); 74 (new SettingsOverridesHandler)->Register();
74 (new SocketsManifestHandler)->Register(); 75 (new SocketsManifestHandler)->Register();
75 (new SpellcheckHandler)->Register(); 76 (new SpellcheckHandler)->Register();
76 (new StorageSchemaManifestHandler)->Register(); 77 (new StorageSchemaManifestHandler)->Register();
77 (new SystemIndicatorHandler)->Register(); 78 (new SystemIndicatorHandler)->Register();
78 (new ThemeHandler)->Register(); 79 (new ThemeHandler)->Register();
79 (new TtsEngineManifestHandler)->Register(); 80 (new TtsEngineManifestHandler)->Register();
81 (new UIOverridesHandler)->Register();
80 (new UpdateURLHandler)->Register(); 82 (new UpdateURLHandler)->Register();
81 (new UrlHandlersParser)->Register(); 83 (new UrlHandlersParser)->Register();
82 (new URLOverridesHandler)->Register(); 84 (new URLOverridesHandler)->Register();
83 #endif 85 #endif
84 } 86 }
85 87
86 } // namespace extensions 88 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698