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

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.cc

Issue 12463015: Enable <adview> tag for packaged apps. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Rebasing. 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 unified diff | Download patch
OLDNEW
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"
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 using WebKit::WebString; 124 using WebKit::WebString;
125 using WebKit::WebURL; 125 using WebKit::WebURL;
126 using WebKit::WebURLError; 126 using WebKit::WebURLError;
127 using WebKit::WebURLRequest; 127 using WebKit::WebURLRequest;
128 using WebKit::WebURLResponse; 128 using WebKit::WebURLResponse;
129 using WebKit::WebVector; 129 using WebKit::WebVector;
130 130
131 namespace { 131 namespace {
132 132
133 const char kWebViewTagName[] = "WEBVIEW"; 133 const char kWebViewTagName[] = "WEBVIEW";
134 const char kAdViewTagName[] = "ADVIEW";
134 135
135 // Explicitly register all extension ManifestHandlers needed to parse 136 // Explicitly register all extension ManifestHandlers needed to parse
136 // fields used in the renderer. 137 // fields used in the renderer.
137 void RegisterExtensionManifestHandlers() { 138 void RegisterExtensionManifestHandlers() {
138 (new extensions::BackgroundManifestHandler)->Register(); 139 (new extensions::BackgroundManifestHandler)->Register();
139 (new extensions::DevToolsPageHandler)->Register(); 140 (new extensions::DevToolsPageHandler)->Register();
140 (new extensions::WebAccessibleResourcesHandler)->Register(); 141 (new extensions::WebAccessibleResourcesHandler)->Register();
141 (new extensions::PageActionHandler)->Register(); 142 (new extensions::PageActionHandler)->Register();
142 (new extensions::CSPHandler(false))->Register(); // not platform app. 143 (new extensions::CSPHandler(false))->Register(); // not platform app.
143 (new extensions::CSPHandler(true))->Register(); // platform app. 144 (new extensions::CSPHandler(true))->Register(); // platform app.
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 if (orig_mime_type == content::kBrowserPluginMimeType) { 395 if (orig_mime_type == content::kBrowserPluginMimeType) {
395 if (CommandLine::ForCurrentProcess()->HasSwitch( 396 if (CommandLine::ForCurrentProcess()->HasSwitch(
396 switches::kEnableBrowserPluginForAllViewTypes)) 397 switches::kEnableBrowserPluginForAllViewTypes))
397 return false; 398 return false;
398 WebDocument document = frame->document(); 399 WebDocument document = frame->document();
399 const Extension* extension = 400 const Extension* extension =
400 GetExtension(document.securityOrigin()); 401 GetExtension(document.securityOrigin());
401 if (extension && extension->HasAPIPermission( 402 if (extension && extension->HasAPIPermission(
402 extensions::APIPermission::kWebView)) 403 extensions::APIPermission::kWebView))
403 return false; 404 return false;
405 if (extension && extension->HasAPIPermission(
darin (slow to review) 2013/03/19 20:20:03 nit: only need to null check |extension| once, rig
rpaquay 2013/03/19 20:45:29 Done.
406 extensions::APIPermission::kAdView))
407 return false;
404 } 408 }
405 409
406 ChromeViewHostMsg_GetPluginInfo_Output output; 410 ChromeViewHostMsg_GetPluginInfo_Output output;
407 #if defined(ENABLE_PLUGINS) 411 #if defined(ENABLE_PLUGINS)
408 render_view->Send(new ChromeViewHostMsg_GetPluginInfo( 412 render_view->Send(new ChromeViewHostMsg_GetPluginInfo(
409 render_view->GetRoutingID(), GURL(params.url), 413 render_view->GetRoutingID(), GURL(params.url),
410 frame->top()->document().url(), orig_mime_type, &output)); 414 frame->top()->document().url(), orig_mime_type, &output));
411 #else 415 #else
412 output.status.value = ChromeViewHostMsg_GetPluginInfo_Status::kNotFound; 416 output.status.value = ChromeViewHostMsg_GetPluginInfo_Status::kNotFound;
413 #endif 417 #endif
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
1108 #endif 1112 #endif
1109 } 1113 }
1110 1114
1111 bool ChromeContentRendererClient::AllowBrowserPlugin( 1115 bool ChromeContentRendererClient::AllowBrowserPlugin(
1112 WebKit::WebPluginContainer* container) const { 1116 WebKit::WebPluginContainer* container) const {
1113 if (CommandLine::ForCurrentProcess()->HasSwitch( 1117 if (CommandLine::ForCurrentProcess()->HasSwitch(
1114 switches::kEnableBrowserPluginForAllViewTypes)) 1118 switches::kEnableBrowserPluginForAllViewTypes))
1115 return true; 1119 return true;
1116 1120
1117 // If this |BrowserPlugin| <object> in the |container| is not inside a 1121 // If this |BrowserPlugin| <object> in the |container| is not inside a
1118 // <webview> shadowHost, we disable instantiating this plugin. This is to 1122 // <webview>/<adview> shadowHost, we disable instantiating this plugin. This
1119 // discourage and prevent developers from accidentally attaching <object> 1123 // is to discourage and prevent developers from accidentally attaching
1120 // directly in apps. 1124 // <object> directly in apps.
1121 // 1125 //
1122 // Note that this check below does *not* ensure any security, it is still 1126 // Note that this check below does *not* ensure any security, it is still
1123 // possible to bypass this check. 1127 // possible to bypass this check.
1124 // TODO(lazyboy): http://crbug.com/178663, Ensure we properly disallow 1128 // TODO(lazyboy): http://crbug.com/178663, Ensure we properly disallow
1125 // instantiating BrowserPlugin outside of the <webview> shim. 1129 // instantiating BrowserPlugin outside of the <webview>/<adview> shim.
1126 if (container->element().isNull()) 1130 if (container->element().isNull())
1127 return false; 1131 return false;
1128 1132
1129 if (container->element().shadowHost().isNull()) 1133 if (container->element().shadowHost().isNull())
1130 return false; 1134 return false;
1131 1135
1132 return container->element().shadowHost().tagName().equals( 1136 return container->element().shadowHost().tagName().equals(
1133 WebString::fromUTF8(kWebViewTagName)); 1137 WebString::fromUTF8(kWebViewTagName)) ||
darin (slow to review) 2013/03/19 20:20:03 nit: save tagName() to a local variable.
rpaquay 2013/03/19 20:45:29 Done.
1138 container->element().shadowHost().tagName().equals(
1139 WebString::fromUTF8(kAdViewTagName));
1134 } 1140 }
1135 1141
1136 } // namespace chrome 1142 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/common/extensions/permissions/api_permission.cc ('k') | chrome/renderer/extensions/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698