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

Unified Diff: chrome/renderer/chrome_content_renderer_client.cc

Issue 12886023: Remove SandboxedPages and SandboxedCSP from Extension Class (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/manifest_tests/extension_manifests_sandboxed_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/chrome_content_renderer_client.cc
diff --git a/chrome/renderer/chrome_content_renderer_client.cc b/chrome/renderer/chrome_content_renderer_client.cc
index 7e297e8f960320af33a691dabb79fa9cfe98ea95..8c3e65294ce5e20178bd40e8ddd0012e9fc094e7 100644
--- a/chrome/renderer/chrome_content_renderer_client.cc
+++ b/chrome/renderer/chrome_content_renderer_client.cc
@@ -28,6 +28,7 @@
#include "chrome/common/extensions/extension_set.h"
#include "chrome/common/extensions/incognito_handler.h"
#include "chrome/common/extensions/manifest_handler.h"
+#include "chrome/common/extensions/manifest_handlers/sandboxed_page_info.h"
#include "chrome/common/extensions/manifest_url_handler.h"
#include "chrome/common/extensions/web_accessible_resources_handler.h"
#include "chrome/common/external_ipc_fuzzer.h"
@@ -140,12 +141,13 @@ const char kAdViewTagName[] = "ADVIEW";
// fields used in the renderer.
void RegisterExtensionManifestHandlers() {
(new extensions::BackgroundManifestHandler)->Register();
- (new extensions::DevToolsPageHandler)->Register();
- (new extensions::WebAccessibleResourcesHandler)->Register();
- (new extensions::PageActionHandler)->Register();
(new extensions::CSPHandler(false))->Register(); // not platform app.
(new extensions::CSPHandler(true))->Register(); // platform app.
+ (new extensions::DevToolsPageHandler)->Register();
(new extensions::IncognitoHandler)->Register();
+ (new extensions::PageActionHandler)->Register();
+ (new extensions::SandboxedPageHandler)->Register();
+ (new extensions::WebAccessibleResourcesHandler)->Register();
}
static void AppendParams(const std::vector<string16>& additional_names,
« no previous file with comments | « chrome/common/extensions/manifest_tests/extension_manifests_sandboxed_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698