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

Unified Diff: chrome/common/instant_types.cc

Issue 11555033: Adding local html page used in Instant Extended mode when instant is disabled or unavailable. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix uninitialized variable. Created 8 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 | « chrome/chrome_browser_ui.gypi ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/instant_types.cc
diff --git a/chrome/common/instant_types.cc b/chrome/common/instant_types.cc
index 1f2c0e247a525c55f26b48a7e854b45559fa799a..fd2849d1a81e66613a7add4a4ac06393f4eb8b3f 100644
--- a/chrome/common/instant_types.cc
+++ b/chrome/common/instant_types.cc
@@ -20,7 +20,9 @@ InstantSuggestion::InstantSuggestion(const string16& in_text,
InstantSuggestion::~InstantSuggestion() {
}
-InstantAutocompleteResult::InstantAutocompleteResult() : relevance(0) {
+InstantAutocompleteResult::InstantAutocompleteResult()
+ : transition(content::PAGE_TRANSITION_LINK),
+ relevance(0) {
}
InstantAutocompleteResult::~InstantAutocompleteResult() {
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698