Index: chrome/renderer/content_settings_observer.h |
diff --git a/chrome/renderer/content_settings_observer.h b/chrome/renderer/content_settings_observer.h |
index 53548b8dca1b260b5646d36d5d5b4e701610edea..d77205a2ffc77267bb84e59df3be41ae6d7a06e2 100644 |
--- a/chrome/renderer/content_settings_observer.h |
+++ b/chrome/renderer/content_settings_observer.h |
@@ -54,6 +54,9 @@ class ContentSettingsObserver |
const blink::WebString& display_name, |
unsigned long estimated_size); |
virtual bool allowFileSystem(blink::WebFrame* frame); |
+ virtual void requestFileSystemAccess( |
+ blink::WebFrame* frame, |
+ const blink::WebPermissionCallbacks& callbacks); |
virtual bool allowImage(blink::WebFrame* frame, |
bool enabled_per_settings, |
const blink::WebURL& image_url); |
@@ -109,6 +112,7 @@ class ContentSettingsObserver |
void OnSetAllowDisplayingInsecureContent(bool allow); |
void OnSetAllowRunningInsecureContent(bool allow); |
void OnReloadFrame(); |
+ void OnRequestFileSystemAccessACK(int request_id, bool allowed); |
// Resets the |content_blocked_| array. |
void ClearBlockedContentSettings(); |