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

Side by Side Diff: extensions/common/common_manifest_handlers.cc

Issue 134643011: Move webview and web_accessible_resources manifest handlers to src/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "extensions/common/common_manifest_handlers.h" 5 #include "extensions/common/common_manifest_handlers.h"
6 6
7 #include "extensions/common/manifest_handler.h" 7 #include "extensions/common/manifest_handler.h"
8 #include "extensions/common/manifest_handlers/background_info.h" 8 #include "extensions/common/manifest_handlers/background_info.h"
9 #include "extensions/common/manifest_handlers/csp_info.h" 9 #include "extensions/common/manifest_handlers/csp_info.h"
10 #include "extensions/common/manifest_handlers/incognito_info.h" 10 #include "extensions/common/manifest_handlers/incognito_info.h"
11 #include "extensions/common/manifest_handlers/kiosk_mode_info.h" 11 #include "extensions/common/manifest_handlers/kiosk_mode_info.h"
12 #include "extensions/common/manifest_handlers/offline_enabled_info.h" 12 #include "extensions/common/manifest_handlers/offline_enabled_info.h"
13 #include "extensions/common/manifest_handlers/sandboxed_page_info.h" 13 #include "extensions/common/manifest_handlers/sandboxed_page_info.h"
14 #include "extensions/common/manifest_handlers/shared_module_info.h" 14 #include "extensions/common/manifest_handlers/shared_module_info.h"
15 #include "extensions/common/manifest_handlers/web_accessible_resources_info.h"
16 #include "extensions/common/manifest_handlers/webview_info.h"
15 17
16 namespace extensions { 18 namespace extensions {
17 19
18 void RegisterCommonManifestHandlers() { 20 void RegisterCommonManifestHandlers() {
19 DCHECK(!ManifestHandler::IsRegistrationFinalized()); 21 DCHECK(!ManifestHandler::IsRegistrationFinalized());
20 (new BackgroundManifestHandler)->Register(); 22 (new BackgroundManifestHandler)->Register();
21 (new CSPHandler(false))->Register(); 23 (new CSPHandler(false))->Register();
22 (new CSPHandler(true))->Register(); 24 (new CSPHandler(true))->Register();
23 (new IncognitoHandler)->Register(); 25 (new IncognitoHandler)->Register();
24 (new KioskModeHandler)->Register(); 26 (new KioskModeHandler)->Register();
25 (new OfflineEnabledHandler)->Register(); 27 (new OfflineEnabledHandler)->Register();
26 (new SandboxedPageHandler)->Register(); 28 (new SandboxedPageHandler)->Register();
27 (new SharedModuleHandler)->Register(); 29 (new SharedModuleHandler)->Register();
30 (new WebAccessibleResourcesHandler)->Register();
31 (new WebviewHandler)->Register();
28 } 32 }
29 33
30 } // namespace extensions 34 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698