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

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

Issue 2881453002: DNR Prototype: With flatbuffers
Patch Set: -- Created 3 years, 6 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
« no previous file with comments | « extensions/common/api/schema.gni ('k') | extensions/common/constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/api/bluetooth/bluetooth_manifest_handler.h" 7 #include "extensions/common/api/bluetooth/bluetooth_manifest_handler.h"
8 #include "extensions/common/api/declarative/declarative_manifest_handler.h" 8 #include "extensions/common/api/declarative/declarative_manifest_handler.h"
9 #include "extensions/common/api/declarative_net_request/rules_manifest_info.h"
9 #include "extensions/common/api/printer_provider/usb_printer_manifest_handler.h" 10 #include "extensions/common/api/printer_provider/usb_printer_manifest_handler.h"
10 #include "extensions/common/api/sockets/sockets_manifest_handler.h" 11 #include "extensions/common/api/sockets/sockets_manifest_handler.h"
11 #include "extensions/common/manifest_handler.h" 12 #include "extensions/common/manifest_handler.h"
12 #include "extensions/common/manifest_handlers/background_info.h" 13 #include "extensions/common/manifest_handlers/background_info.h"
13 #include "extensions/common/manifest_handlers/content_capabilities_handler.h" 14 #include "extensions/common/manifest_handlers/content_capabilities_handler.h"
14 #include "extensions/common/manifest_handlers/csp_info.h" 15 #include "extensions/common/manifest_handlers/csp_info.h"
15 #include "extensions/common/manifest_handlers/default_locale_handler.h" 16 #include "extensions/common/manifest_handlers/default_locale_handler.h"
16 #include "extensions/common/manifest_handlers/externally_connectable.h" 17 #include "extensions/common/manifest_handlers/externally_connectable.h"
17 #include "extensions/common/manifest_handlers/file_handler_info.h" 18 #include "extensions/common/manifest_handlers/file_handler_info.h"
18 #include "extensions/common/manifest_handlers/icons_handler.h" 19 #include "extensions/common/manifest_handlers/icons_handler.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 (new OAuth2ManifestHandler)->Register(); 62 (new OAuth2ManifestHandler)->Register();
62 (new OfflineEnabledHandler)->Register(); 63 (new OfflineEnabledHandler)->Register();
63 (new PluginsHandler)->Register(); 64 (new PluginsHandler)->Register();
64 (new RequirementsHandler)->Register(); // Depends on plugins. 65 (new RequirementsHandler)->Register(); // Depends on plugins.
65 (new SandboxedPageHandler)->Register(); 66 (new SandboxedPageHandler)->Register();
66 (new SharedModuleHandler)->Register(); 67 (new SharedModuleHandler)->Register();
67 (new SocketsManifestHandler)->Register(); 68 (new SocketsManifestHandler)->Register();
68 (new UsbPrinterManifestHandler)->Register(); 69 (new UsbPrinterManifestHandler)->Register();
69 (new WebAccessibleResourcesHandler)->Register(); 70 (new WebAccessibleResourcesHandler)->Register();
70 (new WebviewHandler)->Register(); 71 (new WebviewHandler)->Register();
72 (new declarative_net_request::RulesManifestHandler)->Register();
71 } 73 }
72 74
73 } // namespace extensions 75 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/api/schema.gni ('k') | extensions/common/constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698