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

Unified Diff: chrome/browser/ui/search/instant_page.h

Issue 14043009: Fall back to local page if online NTP fails to load. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup Created 7 years, 8 months 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: chrome/browser/ui/search/instant_page.h
diff --git a/chrome/browser/ui/search/instant_page.h b/chrome/browser/ui/search/instant_page.h
index 93c9cc8a9b7fc174ba368e85d9dd71d5467dce9c..ec4ae09787784417be7a70f82a748dbcd747c956 100644
--- a/chrome/browser/ui/search/instant_page.h
+++ b/chrome/browser/ui/search/instant_page.h
@@ -19,6 +19,8 @@ class GURL;
namespace content {
class WebContents;
+struct FrameNavigateParams;
+struct LoadCommittedDetails;
}
namespace gfx {
@@ -91,6 +93,9 @@ class InstantPage : public content::WebContentsObserver {
// Called when the SearchBox wants to undo all Most Visited deletions.
virtual void UndoAllMostVisitedDeletions() = 0;
+ // Called when the preloaded NTP is ready for display.
+ virtual void InstantPageLoadFailed(content::WebContents* contents) = 0;
+
protected:
virtual ~Delegate();
};
@@ -211,6 +216,17 @@ class InstantPage : public content::WebContentsObserver {
const GURL& url,
content::PageTransition transition_type,
content::RenderViewHost* render_view_host) OVERRIDE;
+ virtual void DidNavigateAnyFrame(
+ const content::LoadCommittedDetails& details,
+ const content::FrameNavigateParams& params) OVERRIDE;
+
+ virtual void DidFailProvisionalLoad(
+ int64 frame_id,
+ bool is_main_frame,
+ const GURL& validated_url,
+ int error_code,
+ const string16& error_description,
+ content::RenderViewHost* render_view_host) OVERRIDE;
void OnSetSuggestions(int page_id,
const std::vector<InstantSuggestion>& suggestions);

Powered by Google App Engine
This is Rietveld 408576698