Chromium Code Reviews| Index: content/public/browser/content_browser_client.h |
| diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h |
| index 739f4c0ff75af62c174a2946713df93deca519bb..807a25f1fbafc2cf96657d9255f90ba5aef16f9c 100644 |
| --- a/content/public/browser/content_browser_client.h |
| +++ b/content/public/browser/content_browser_client.h |
| @@ -317,10 +317,11 @@ class CONTENT_EXPORT ContentBrowserClient { |
| // Allow the embedder to control if access to file system by a shared worker |
| // is allowed. |
| // This is called on the IO thread. |
| - virtual bool AllowWorkerFileSystem( |
| + virtual void RequestWorkerFileSystemAccess( |
|
jabdelmalek
2014/06/24 21:23:32
nit: keep the old name. The "Allow" is used by con
Xi Han
2014/06/25 14:50:26
Done.
|
| const GURL& url, |
| ResourceContext* context, |
| - const std::vector<std::pair<int, int> >& render_frames); |
| + const std::vector<std::pair<int, int> >& render_frames, |
| + base::Callback<void(bool)> callback); |
| // Allow the embedder to control if access to IndexedDB by a shared worker |
| // is allowed. |