OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/renderer/chrome_content_renderer_client.h" | 5 #include "chrome/renderer/chrome_content_renderer_client.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/metrics/histogram.h" | 12 #include "base/metrics/histogram.h" |
13 #include "base/path_service.h" | 13 #include "base/path_service.h" |
14 #include "base/utf_string_conversions.h" | 14 #include "base/utf_string_conversions.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "chrome/common/child_process_logging.h" | 16 #include "chrome/common/child_process_logging.h" |
17 #include "chrome/common/chrome_content_client.h" | 17 #include "chrome/common/chrome_content_client.h" |
18 #include "chrome/common/chrome_paths.h" | 18 #include "chrome/common/chrome_paths.h" |
19 #include "chrome/common/chrome_switches.h" | 19 #include "chrome/common/chrome_switches.h" |
20 #include "chrome/common/content_settings_pattern.h" | 20 #include "chrome/common/content_settings_pattern.h" |
21 #include "chrome/common/extensions/api/extension_action/page_action_handler.h" | 21 #include "chrome/common/extensions/api/extension_action/page_action_handler.h" |
| 22 #include "chrome/common/extensions/background_info.h" |
22 #include "chrome/common/extensions/extension.h" | 23 #include "chrome/common/extensions/extension.h" |
23 #include "chrome/common/extensions/extension_constants.h" | 24 #include "chrome/common/extensions/extension_constants.h" |
24 #include "chrome/common/extensions/extension_manifest_constants.h" | 25 #include "chrome/common/extensions/extension_manifest_constants.h" |
25 #include "chrome/common/extensions/extension_process_policy.h" | 26 #include "chrome/common/extensions/extension_process_policy.h" |
26 #include "chrome/common/extensions/extension_set.h" | 27 #include "chrome/common/extensions/extension_set.h" |
27 #include "chrome/common/extensions/manifest_handler.h" | 28 #include "chrome/common/extensions/manifest_handler.h" |
28 #include "chrome/common/extensions/manifest_url_handler.h" | 29 #include "chrome/common/extensions/manifest_url_handler.h" |
29 #include "chrome/common/extensions/web_accessible_resources_handler.h" | 30 #include "chrome/common/extensions/web_accessible_resources_handler.h" |
30 #include "chrome/common/external_ipc_fuzzer.h" | 31 #include "chrome/common/external_ipc_fuzzer.h" |
31 #include "chrome/common/localized_error.h" | 32 #include "chrome/common/localized_error.h" |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 using WebKit::WebURLError; | 121 using WebKit::WebURLError; |
121 using WebKit::WebURLRequest; | 122 using WebKit::WebURLRequest; |
122 using WebKit::WebURLResponse; | 123 using WebKit::WebURLResponse; |
123 using WebKit::WebVector; | 124 using WebKit::WebVector; |
124 | 125 |
125 namespace { | 126 namespace { |
126 | 127 |
127 // Explicitly register all extension ManifestHandlers needed to parse | 128 // Explicitly register all extension ManifestHandlers needed to parse |
128 // fields used in the renderer. | 129 // fields used in the renderer. |
129 void RegisterExtensionManifestHandlers() { | 130 void RegisterExtensionManifestHandlers() { |
| 131 std::vector<std::string> background_keys( |
| 132 extensions::BackgroundManifestHandler::keys()); |
| 133 linked_ptr<extensions::BackgroundManifestHandler> background_handler( |
| 134 new extensions::BackgroundManifestHandler); |
| 135 for (size_t i = 0; i < background_keys.size(); ++i) { |
| 136 extensions::ManifestHandler::Register(background_keys[i], |
| 137 background_handler); |
| 138 } |
130 extensions::ManifestHandler::Register( | 139 extensions::ManifestHandler::Register( |
131 extension_manifest_keys::kDevToolsPage, | 140 extension_manifest_keys::kDevToolsPage, |
132 make_linked_ptr(new extensions::DevToolsPageHandler)); | 141 make_linked_ptr(new extensions::DevToolsPageHandler)); |
133 extensions::ManifestHandler::Register( | 142 extensions::ManifestHandler::Register( |
134 extension_manifest_keys::kWebAccessibleResources, | 143 extension_manifest_keys::kWebAccessibleResources, |
135 make_linked_ptr(new extensions::WebAccessibleResourcesHandler)); | 144 make_linked_ptr(new extensions::WebAccessibleResourcesHandler)); |
136 linked_ptr<extensions::PageActionHandler> page_action_handler( | 145 linked_ptr<extensions::PageActionHandler> page_action_handler( |
137 new extensions::PageActionHandler); | 146 new extensions::PageActionHandler); |
138 extensions::ManifestHandler::Register( | 147 extensions::ManifestHandler::Register( |
139 extension_manifest_keys::kPageAction, page_action_handler); | 148 extension_manifest_keys::kPageAction, page_action_handler); |
(...skipping 926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1066 } | 1075 } |
1067 | 1076 |
1068 void ChromeContentRendererClient::RegisterPPAPIInterfaceFactories( | 1077 void ChromeContentRendererClient::RegisterPPAPIInterfaceFactories( |
1069 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) { | 1078 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) { |
1070 #if defined(ENABLE_PLUGINS) | 1079 #if defined(ENABLE_PLUGINS) |
1071 factory_manager->RegisterFactory(ChromePPAPIInterfaceFactory); | 1080 factory_manager->RegisterFactory(ChromePPAPIInterfaceFactory); |
1072 #endif | 1081 #endif |
1073 } | 1082 } |
1074 | 1083 |
1075 } // namespace chrome | 1084 } // namespace chrome |
OLD | NEW |