| Index: chrome/browser/renderer_host/chrome_render_message_filter.h
|
| diff --git a/chrome/browser/renderer_host/chrome_render_message_filter.h b/chrome/browser/renderer_host/chrome_render_message_filter.h
|
| index 7763c1375ab43169409a701833743878989341c1..1a9bd42c73b332e88724d6a3784cf499cb21b4c8 100644
|
| --- a/chrome/browser/renderer_host/chrome_render_message_filter.h
|
| +++ b/chrome/browser/renderer_host/chrome_render_message_filter.h
|
| @@ -137,10 +137,17 @@ class ChromeRenderMessageFilter : public content::BrowserMessageFilter {
|
| const GURL& top_origin_url,
|
| bool local,
|
| bool* allowed);
|
| - void OnAllowFileSystem(int render_frame_id,
|
| - const GURL& origin_url,
|
| - const GURL& top_origin_url,
|
| - bool* allowed);
|
| + void OnRequestFileSystemAccessSync(int render_frame_id,
|
| + const GURL& origin_url,
|
| + const GURL& top_origin_url,
|
| + bool* allowed);
|
| + void OnRequestFileSystemAccessAsync(int render_frame_id,
|
| + int request_id,
|
| + const GURL& origin_url,
|
| + const GURL& top_origin_url);
|
| + void OnRequestFileSystemAccessAsyncCallbacks(int render_frame_id,
|
| + int request_id,
|
| + bool allowed);
|
| void OnAllowIndexedDB(int render_frame_id,
|
| const GURL& origin_url,
|
| const GURL& top_origin_url,
|
|
|