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

Unified Diff: chrome/browser/instant/instant_tab.cc

Issue 11833043: Instant Extended: Fallback to local preview if the remote instant page is not ready on user input. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor
Patch Set: Fixing tests. Created 7 years, 11 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/instant/instant_tab.cc
diff --git a/chrome/browser/instant/instant_tab.cc b/chrome/browser/instant/instant_tab.cc
index 33cfe621649223bbfdc5a8f243b12208a394050e..fab33b5694ff86987bc3d78a4a35a1ebad9b2346 100644
--- a/chrome/browser/instant/instant_tab.cc
+++ b/chrome/browser/instant/instant_tab.cc
@@ -50,6 +50,10 @@ void InstantTab::SetMarginSize(int start, int end) {
client_.SetMarginSize(start, end);
}
+void InstantTab::InitializeFonts() {
+ client_.InitializeFonts();
+}
+
void InstantTab::SetSuggestions(
const std::vector<InstantSuggestion>& suggestions) {
InstantSupportDetermined(true);
@@ -96,3 +100,6 @@ void InstantTab::NavigateToURL(const GURL& url,
content::PageTransition transition) {
controller_->NavigateToURL(url, transition);
}
+
+void InstantTab::RenderViewCreated(content::RenderViewHost* host) {
+}

Powered by Google App Engine
This is Rietveld 408576698