Index: chrome/browser/guest_view/web_view/web_view_guest.h |
diff --git a/chrome/browser/guest_view/web_view/web_view_guest.h b/chrome/browser/guest_view/web_view/web_view_guest.h |
index 32defb5c87197e7ad491a23e44485151e5cb52e2..64517b2845954075ed6352547ea637ac38fa6014 100644 |
--- a/chrome/browser/guest_view/web_view/web_view_guest.h |
+++ b/chrome/browser/guest_view/web_view/web_view_guest.h |
@@ -274,7 +274,7 @@ class WebViewGuest : public GuestView<WebViewGuest>, |
int render_frame_id, |
const GURL& url, |
bool blocked_by_policy, |
- IPC::Message* reply_msg); |
+ base::Callback<void(bool)> callback); |
private: |
virtual ~WebViewGuest(); |
@@ -336,11 +336,12 @@ class WebViewGuest : public GuestView<WebViewGuest>, |
const GURL& url, |
bool allowed); |
- static void FileSystemAccessedSyncResponse(int render_process_id, |
- int render_frame_id, |
- const GURL& url, |
- IPC::Message* reply_msg, |
- bool allowed); |
+ static void FileSystemAccessedSyncResponse( |
+ int render_process_id, |
+ int render_frame_id, |
+ const GURL& url, |
+ base::Callback<void(bool)> callback, |
+ bool allowed); |
// WebContentsObserver implementation. |
virtual void DidCommitProvisionalLoadForFrame( |