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

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

Issue 26316005: Move out DidStartProvisionalLoad from WebContentsImpl into Navigator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Some cleanup. Created 7 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 side-by-side diff with in-line comments
Download patch
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 47a127e823d8f7a06401daa8985c3f3ad5e0c947..ca467312e5ba3131fe154fc080c984b7ebde918b 100644
--- a/content/browser/frame_host/interstitial_page_impl.h
+++ b/content/browser/frame_host/interstitial_page_impl.h
@@ -67,6 +67,20 @@ class CONTENT_EXPORT InterstitialPageImpl
virtual void SetSize(const gfx::Size& size) OVERRIDE;
virtual void Focus() OVERRIDE;
+ // NavigatorDelegate implementation
+ virtual void DidStartProvisionalLoad(
Charlie Reis 2013/11/21 21:59:32 We shouldn't need these. See my comment in naviga
nasko 2013/11/22 01:02:34 Done.
+ RenderFrameHostImpl* render_frame_host,
+ int64 frame_id,
+ int64 parent_frame_id,
+ bool is_main_frame,
+ const GURL& validated_url,
+ bool is_error_page,
+ bool is_iframe_srcdoc) OVERRIDE;
+ virtual void NotifyProvisionalChangeToMainFrameUrl(
+ RenderFrameHostImpl* render_frame_host,
+ const GURL& url) OVERRIDE;
+ virtual void NotifyNavigationStateChanged(unsigned changed_flags) OVERRIDE;
+
// Allows the user to navigate away by disabling the interstitial, canceling
// the pending request, and unblocking the hidden renderer. The interstitial
// will stay visible until the navigation completes.

Powered by Google App Engine
This is Rietveld 408576698