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

Unified Diff: chrome/browser/autocomplete/history_url_provider.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/autocomplete/history_url_provider.cc
diff --git a/chrome/browser/autocomplete/history_url_provider.cc b/chrome/browser/autocomplete/history_url_provider.cc
index 9ba153a4a3afd39e69547615eaa0328514fc3849..c9ae6129cd8112868d320c470759160700666332 100644
--- a/chrome/browser/autocomplete/history_url_provider.cc
+++ b/chrome/browser/autocomplete/history_url_provider.cc
@@ -295,18 +295,19 @@ HistoryURLProviderParams::HistoryURLProviderParams(
const std::string& languages,
TemplateURL* default_search_provider,
const SearchTermsData& search_terms_data)
- : message_loop(MessageLoop::current()),
+ : message_loop(base::MessageLoop::current()),
input(input),
prevent_inline_autocomplete(input.prevent_inline_autocomplete()),
trim_http(trim_http),
failed(false),
languages(languages),
dont_suggest_exact_input(false),
- default_search_provider(default_search_provider ?
- new TemplateURL(default_search_provider->profile(),
- default_search_provider->data()) : NULL),
- search_terms_data(new SearchTermsDataSnapshot(search_terms_data)) {
-}
+ default_search_provider(
+ default_search_provider
+ ? new TemplateURL(default_search_provider->profile(),
+ default_search_provider->data())
+ : NULL),
+ search_terms_data(new SearchTermsDataSnapshot(search_terms_data)) {}
HistoryURLProviderParams::~HistoryURLProviderParams() {
}

Powered by Google App Engine
This is Rietveld 408576698