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

Side by Side Diff: chrome/renderer/content_settings_observer.h

Issue 290573010: Clean up in browser side of allowFileSystem. [chromium] (4/4) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@asyn_codereview
Patch Set: rebase Created 6 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/renderer/content_settings_observer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/content_settings_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698