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

Unified Diff: android_webview/renderer/aw_permission_client.h

Issue 216983003: Chrome side changes to removing WebFrame parameter from WebPermissionClient, since it's redundant n… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: review comments Created 6 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 | « no previous file | android_webview/renderer/aw_permission_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/renderer/aw_permission_client.h
===================================================================
--- android_webview/renderer/aw_permission_client.h (revision 260883)
+++ android_webview/renderer/aw_permission_client.h (working copy)
@@ -20,6 +20,7 @@
virtual ~AwPermissionClient();
// blink::WebPermissionClient implementation.
+ // TODO(jam): remove all these methods after Blink rolls.
virtual bool allowDisplayingInsecureContent(
blink::WebFrame* frame,
bool enabled_per_settings,
@@ -31,6 +32,15 @@
const blink::WebSecurityOrigin& origin,
const blink::WebURL& url) OVERRIDE;
+ virtual bool allowDisplayingInsecureContent(
+ bool enabled_per_settings,
+ const blink::WebSecurityOrigin& origin,
+ const blink::WebURL& url) OVERRIDE;
+ virtual bool allowRunningInsecureContent(
+ bool enabled_per_settings,
+ const blink::WebSecurityOrigin& origin,
+ const blink::WebURL& url) OVERRIDE;
+
DISALLOW_COPY_AND_ASSIGN(AwPermissionClient);
};
« no previous file with comments | « no previous file | android_webview/renderer/aw_permission_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698