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

Side by Side Diff: android_webview/renderer/aw_permission_client.h

Issue 104833006: Switch ContentSettingsObserver to be a RenderFrameObserver instead of a RenderViewObserver (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 7 years 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ANDROID_WEBVIEW_RENDERER_AW_PERMISSION_CLIENT_H_
6 #define ANDROID_WEBVIEW_RENDERER_AW_PERMISSION_CLIENT_H_
7
8 #include "content/public/renderer/render_frame_observer.h"
9 #include "third_party/WebKit/public/web/WebPermissionClient.h"
10
11 namespace android_webview {
12
13 // Android WebView implementation of blink::WebPermissionClient.
14 class AwPermissionClient : public content::RenderFrameObserver,
15 public blink::WebPermissionClient {
16 public:
17 explicit AwPermissionClient(content::RenderFrame* render_view);
18
19 private:
20 virtual ~AwPermissionClient();
21
22 // content::RenderFrameObserver implementation.
23 virtual void WebFrameCreated(blink::WebFrame* frame) OVERRIDE;
24
25 // blink::WebPermissionClient implementation.
26 virtual bool allowDisplayingInsecureContent(
27 blink::WebFrame* frame,
28 bool enabled_per_settings,
29 const blink::WebSecurityOrigin& origin,
30 const blink::WebURL& url) OVERRIDE;
31 virtual bool allowRunningInsecureContent(
32 blink::WebFrame* frame,
33 bool enabled_per_settings,
34 const blink::WebSecurityOrigin& origin,
35 const blink::WebURL& url) OVERRIDE;
36
37 DISALLOW_COPY_AND_ASSIGN(AwPermissionClient);
38 };
39
40 } // namespace android_webview
41
42 #endif // ANDROID_WEBVIEW_RENDERER_AW_PERMISSION_CLIENT_H_
OLDNEW
« no previous file with comments | « android_webview/renderer/aw_content_renderer_client.cc ('k') | android_webview/renderer/aw_permission_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698