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

Side by Side Diff: content/browser/frame_host/interstitial_page_impl.h

Issue 1410313006: Separate RenderViewHost from RenderWidgetHost, part 5: move calls to the RenderWidgetHostDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 // RenderViewHostDelegate implementation: 112 // RenderViewHostDelegate implementation:
113 RenderViewHostDelegateView* GetDelegateView() override; 113 RenderViewHostDelegateView* GetDelegateView() override;
114 bool OnMessageReceived(RenderViewHost* render_view_host, 114 bool OnMessageReceived(RenderViewHost* render_view_host,
115 const IPC::Message& message) override; 115 const IPC::Message& message) override;
116 const GURL& GetMainFrameLastCommittedURL() const override; 116 const GURL& GetMainFrameLastCommittedURL() const override;
117 void RenderViewTerminated(RenderViewHost* render_view_host, 117 void RenderViewTerminated(RenderViewHost* render_view_host,
118 base::TerminationStatus status, 118 base::TerminationStatus status,
119 int error_code) override; 119 int error_code) override;
120 RendererPreferences GetRendererPrefs( 120 RendererPreferences GetRendererPrefs(
121 BrowserContext* browser_context) const override; 121 BrowserContext* browser_context) const override;
122 gfx::Rect GetRootWindowResizerRect() const override;
123 void CreateNewWindow( 122 void CreateNewWindow(
124 SiteInstance* source_site_instance, 123 SiteInstance* source_site_instance,
125 int32_t route_id, 124 int32_t route_id,
126 int32_t main_frame_route_id, 125 int32_t main_frame_route_id,
127 int32_t main_frame_widget_route_id, 126 int32_t main_frame_widget_route_id,
128 const ViewHostMsg_CreateWindow_Params& params, 127 const ViewHostMsg_CreateWindow_Params& params,
129 SessionStorageNamespace* session_storage_namespace) override; 128 SessionStorageNamespace* session_storage_namespace) override;
130 void CreateNewWidget(int32 render_process_id, 129 void CreateNewWidget(int32 render_process_id,
131 int32 route_id, 130 int32 route_id,
132 blink::WebPopupType popup_type) override; 131 blink::WebPopupType popup_type) override;
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; 290 scoped_refptr<SessionStorageNamespace> session_storage_namespace_;
292 291
293 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; 292 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_;
294 293
295 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); 294 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl);
296 }; 295 };
297 296
298 } // namespace content 297 } // namespace content
299 298
300 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ 299 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
OLDNEW
« 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