OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBPERMISSIONS_H_ | 5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBPERMISSIONS_H_ |
6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBPERMISSIONS_H_ | 6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBPERMISSIONS_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "third_party/WebKit/public/web/WebFrame.h" | 9 #include "third_party/WebKit/public/web/WebFrame.h" |
10 #include "third_party/WebKit/public/web/WebPermissionClient.h" | 10 #include "third_party/WebKit/public/web/WebPermissionClient.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 | 13 |
14 class WebTestDelegate; | 14 class WebTestDelegate; |
15 | 15 |
16 class WebPermissions : public blink::WebPermissionClient { | 16 class WebPermissions : public blink::WebPermissionClient { |
17 public: | 17 public: |
18 WebPermissions(); | 18 WebPermissions(); |
19 virtual ~WebPermissions(); | 19 virtual ~WebPermissions(); |
20 | 20 |
21 // Override WebPermissionClient methods. | 21 // Override WebPermissionClient methods. |
22 virtual bool allowImage(bool enabledPerSettings, const blink::WebURL& imageU
RL); | 22 virtual bool allowImage(bool enabledPerSettings, const blink::WebURL& imageU
RL); |
| 23 virtual bool allowMedia(const blink::WebURL& mediaURL); |
23 virtual bool allowScriptFromSource(bool enabledPerSettings, const blink::Web
URL& scriptURL); | 24 virtual bool allowScriptFromSource(bool enabledPerSettings, const blink::Web
URL& scriptURL); |
24 virtual bool allowStorage(bool local); | 25 virtual bool allowStorage(bool local); |
25 virtual bool allowPlugins(bool enabledPerSettings); | 26 virtual bool allowPlugins(bool enabledPerSettings); |
26 virtual bool allowDisplayingInsecureContent(bool enabledPerSettings, const b
link::WebSecurityOrigin&, const blink::WebURL&); | 27 virtual bool allowDisplayingInsecureContent(bool enabledPerSettings, const b
link::WebSecurityOrigin&, const blink::WebURL&); |
27 virtual bool allowRunningInsecureContent(bool enabledPerSettings, const blin
k::WebSecurityOrigin&, const blink::WebURL&); | 28 virtual bool allowRunningInsecureContent(bool enabledPerSettings, const blin
k::WebSecurityOrigin&, const blink::WebURL&); |
28 | 29 |
29 // Hooks to set the different policies. | 30 // Hooks to set the different policies. |
30 void setImagesAllowed(bool); | 31 void setImagesAllowed(bool); |
| 32 void setMediaAllowed(bool); |
31 void setScriptsAllowed(bool); | 33 void setScriptsAllowed(bool); |
32 void setStorageAllowed(bool); | 34 void setStorageAllowed(bool); |
33 void setPluginsAllowed(bool); | 35 void setPluginsAllowed(bool); |
34 void setDisplayingInsecureContentAllowed(bool); | 36 void setDisplayingInsecureContentAllowed(bool); |
35 void setRunningInsecureContentAllowed(bool); | 37 void setRunningInsecureContentAllowed(bool); |
36 | 38 |
37 // Resets the policy to allow everything, except for running insecure conten
t. | 39 // Resets the policy to allow everything, except for running insecure conten
t. |
38 void reset(); | 40 void reset(); |
39 | 41 |
40 void setDelegate(WebTestDelegate*); | 42 void setDelegate(WebTestDelegate*); |
41 void setDumpCallbacks(bool); | 43 void setDumpCallbacks(bool); |
42 | 44 |
43 private: | 45 private: |
44 WebTestDelegate* m_delegate; | 46 WebTestDelegate* m_delegate; |
45 bool m_dumpCallbacks; | 47 bool m_dumpCallbacks; |
46 | 48 |
47 bool m_imagesAllowed; | 49 bool m_imagesAllowed; |
| 50 bool m_mediaAllowed; |
48 bool m_scriptsAllowed; | 51 bool m_scriptsAllowed; |
49 bool m_storageAllowed; | 52 bool m_storageAllowed; |
50 bool m_pluginsAllowed; | 53 bool m_pluginsAllowed; |
51 bool m_displayingInsecureContentAllowed; | 54 bool m_displayingInsecureContentAllowed; |
52 bool m_runningInsecureContentAllowed; | 55 bool m_runningInsecureContentAllowed; |
53 | 56 |
54 DISALLOW_COPY_AND_ASSIGN(WebPermissions); | 57 DISALLOW_COPY_AND_ASSIGN(WebPermissions); |
55 }; | 58 }; |
56 | 59 |
57 } // namespace content | 60 } // namespace content |
58 | 61 |
59 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBPERMISSIONS_H_ | 62 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEBPERMISSIONS_H_ |
OLD | NEW |