| OLD | NEW |
| 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 #ifndef CHROME_RENDERER_CONTENT_SETTINGS_OBSERVER_H_ | 5 #ifndef CHROME_RENDERER_CONTENT_SETTINGS_OBSERVER_H_ |
| 6 #define CHROME_RENDERER_CONTENT_SETTINGS_OBSERVER_H_ | 6 #define CHROME_RENDERER_CONTENT_SETTINGS_OBSERVER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 bool IsPluginTemporarilyAllowed(const std::string& identifier); | 46 bool IsPluginTemporarilyAllowed(const std::string& identifier); |
| 47 | 47 |
| 48 // Sends an IPC notification that the specified content type was blocked. | 48 // Sends an IPC notification that the specified content type was blocked. |
| 49 void DidBlockContentType(ContentSettingsType settings_type); | 49 void DidBlockContentType(ContentSettingsType settings_type); |
| 50 | 50 |
| 51 // blink::WebPermissionClient implementation. | 51 // blink::WebPermissionClient implementation. |
| 52 virtual bool allowDatabase(const blink::WebString& name, | 52 virtual bool allowDatabase(const blink::WebString& name, |
| 53 const blink::WebString& display_name, | 53 const blink::WebString& display_name, |
| 54 unsigned long estimated_size); | 54 unsigned long estimated_size); |
| 55 virtual bool allowFileSystem(); | |
| 56 virtual void requestFileSystemAccessAsync( | 55 virtual void requestFileSystemAccessAsync( |
| 57 const blink::WebPermissionCallbacks& callbacks); | 56 const blink::WebPermissionCallbacks& callbacks); |
| 58 virtual bool allowImage(bool enabled_per_settings, | 57 virtual bool allowImage(bool enabled_per_settings, |
| 59 const blink::WebURL& image_url); | 58 const blink::WebURL& image_url); |
| 60 virtual bool allowIndexedDB(const blink::WebString& name, | 59 virtual bool allowIndexedDB(const blink::WebString& name, |
| 61 const blink::WebSecurityOrigin& origin); | 60 const blink::WebSecurityOrigin& origin); |
| 62 virtual bool allowPlugins(bool enabled_per_settings); | 61 virtual bool allowPlugins(bool enabled_per_settings); |
| 63 virtual bool allowScript(bool enabled_per_settings); | 62 virtual bool allowScript(bool enabled_per_settings); |
| 64 virtual bool allowScriptFromSource(bool enabled_per_settings, | 63 virtual bool allowScriptFromSource(bool enabled_per_settings, |
| 65 const blink::WebURL& script_url); | 64 const blink::WebURL& script_url); |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 bool npapi_plugins_blocked_; | 144 bool npapi_plugins_blocked_; |
| 146 | 145 |
| 147 int current_request_id_; | 146 int current_request_id_; |
| 148 typedef std::map<int, blink::WebPermissionCallbacks> PermissionRequestMap; | 147 typedef std::map<int, blink::WebPermissionCallbacks> PermissionRequestMap; |
| 149 PermissionRequestMap permission_requests_; | 148 PermissionRequestMap permission_requests_; |
| 150 | 149 |
| 151 DISALLOW_COPY_AND_ASSIGN(ContentSettingsObserver); | 150 DISALLOW_COPY_AND_ASSIGN(ContentSettingsObserver); |
| 152 }; | 151 }; |
| 153 | 152 |
| 154 #endif // CHROME_RENDERER_CONTENT_SETTINGS_OBSERVER_H_ | 153 #endif // CHROME_RENDERER_CONTENT_SETTINGS_OBSERVER_H_ |
| OLD | NEW |