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

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

Issue 105193002: Replace string16 with base::string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: chrome/browser/autocomplete/autocomplete_result.cc
diff --git a/chrome/browser/autocomplete/autocomplete_result.cc b/chrome/browser/autocomplete/autocomplete_result.cc
index 7078f553091f1d39a27e10db2ca030085c655992..675a96c7382afad2b89cb9076a5668ffb4121e4b 100644
--- a/chrome/browser/autocomplete/autocomplete_result.cc
+++ b/chrome/browser/autocomplete/autocomplete_result.cc
@@ -194,10 +194,10 @@ void AutocompleteResult::SortAndCull(const AutocompleteInput& input,
default_match_ = matches_.begin();
if (default_match_ != matches_.end()) {
- const string16 debug_info = ASCIIToUTF16("fill_into_edit=") +
+ const base::string16 debug_info = ASCIIToUTF16("fill_into_edit=") +
default_match_->fill_into_edit + ASCIIToUTF16(", provider=") +
((default_match_->provider != NULL) ?
- ASCIIToUTF16(default_match_->provider->GetName()) : string16()) +
+ ASCIIToUTF16(default_match_->provider->GetName()) : base::string16()) +
ASCIIToUTF16(", input=") + input.text();
DCHECK(default_match_->allowed_to_be_default_match) << debug_info;
// We shouldn't get query matches for URL inputs, or non-query matches

Powered by Google App Engine
This is Rietveld 408576698