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

Unified Diff: chrome/browser/renderer_host/chrome_render_message_filter.h

Issue 273513005: Avoid sync IPCs for FileSystem API [chromium] (2/4) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Small changes are made. 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 side-by-side diff with in-line comments
Download patch
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..68eb10650589a0c6c7e3b2842a43d4f97c4adbe8 100644
--- a/chrome/browser/renderer_host/chrome_render_message_filter.h
+++ b/chrome/browser/renderer_host/chrome_render_message_filter.h
@@ -137,10 +137,14 @@ 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(const IPC::Message& message);
+ void OnRequestFileSystemAccessAsyncCallbacks(int routing_id,
+ int render_frame_id,
+ bool allowed);
void OnAllowIndexedDB(int render_frame_id,
const GURL& origin_url,
const GURL& top_origin_url,

Powered by Google App Engine
This is Rietveld 408576698