6548553d7a9c52df61146abfe5719bf13e800517
[platform/framework/web/crosswalk.git] / src / android_webview / renderer / aw_permission_client.h
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   // blink::WebPermissionClient implementation.
23   virtual bool allowDisplayingInsecureContent(
24       blink::WebFrame* frame,
25       bool enabled_per_settings,
26       const blink::WebSecurityOrigin& origin,
27       const blink::WebURL& url) OVERRIDE;
28   virtual bool allowRunningInsecureContent(
29       blink::WebFrame* frame,
30       bool enabled_per_settings,
31       const blink::WebSecurityOrigin& origin,
32       const blink::WebURL& url) OVERRIDE;
33
34   DISALLOW_COPY_AND_ASSIGN(AwPermissionClient);
35 };
36
37 }  // namespace android_webview
38
39 #endif  // ANDROID_WEBVIEW_RENDERER_AW_PERMISSION_CLIENT_H_