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

Unified Diff: content/browser/frame_host/interstitial_page_impl.h

Issue 2563233002: WebContentsImpl: IPC_BEGIN_MESSAGE_MAP_WITH_PARAM everywhere (Closed)
Patch Set: Fix comments. Created 4 years 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
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/interstitial_page_impl.h
diff --git a/content/browser/frame_host/interstitial_page_impl.h b/content/browser/frame_host/interstitial_page_impl.h
index 7e5dbe160b2302be7220019f043937f282684e0a..777917ba3b732a5ac9c7bb7bdf2ff5509e32a039 100644
--- a/content/browser/frame_host/interstitial_page_impl.h
+++ b/content/browser/frame_host/interstitial_page_impl.h
@@ -102,7 +102,7 @@ class CONTENT_EXPORT InterstitialPageImpl
const NotificationDetails& details) override;
// RenderFrameHostDelegate implementation:
- bool OnMessageReceived(RenderFrameHost* render_frame_host,
+ bool OnMessageReceived(RenderFrameHostImpl* render_frame_host,
const IPC::Message& message) override;
void RenderFrameCreated(RenderFrameHost* render_frame_host) override;
void UpdateTitle(RenderFrameHost* render_frame_host,
@@ -117,7 +117,7 @@ class CONTENT_EXPORT InterstitialPageImpl
// RenderViewHostDelegate implementation:
RenderViewHostDelegateView* GetDelegateView() override;
- bool OnMessageReceived(RenderViewHost* render_view_host,
+ bool OnMessageReceived(RenderViewHostImpl* render_view_host,
const IPC::Message& message) override;
const GURL& GetMainFrameLastCommittedURL() const override;
void RenderViewTerminated(RenderViewHost* render_view_host,
@@ -212,7 +212,8 @@ class CONTENT_EXPORT InterstitialPageImpl
void TakeActionOnResourceDispatcher(ResourceRequestAction action);
// IPC message handlers.
- void OnDomOperationResponse(const std::string& json_string);
+ void OnDomOperationResponse(RenderFrameHostImpl* source,
+ const std::string& json_string);
// Creates the RenderViewHost containing the interstitial content.
RenderViewHostImpl* CreateRenderViewHost();
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698