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

Unified Diff: components/autofill/browser/test_autofill_external_delegate.cc

Issue 13973004: Convert string16 -> base::string16 in components/ (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: components/autofill/browser/test_autofill_external_delegate.cc
diff --git a/components/autofill/browser/test_autofill_external_delegate.cc b/components/autofill/browser/test_autofill_external_delegate.cc
index 31bb02b852b7cbaa354a768414ec9eb48ea8b94b..e9643d889b1ba113019c9812b7488b9137893f35 100644
--- a/components/autofill/browser/test_autofill_external_delegate.cc
+++ b/components/autofill/browser/test_autofill_external_delegate.cc
@@ -18,8 +18,8 @@ void GenerateTestAutofillPopup(
gfx::RectF bounds(100.f, 100.f);
autofill_external_delegate->OnQuery(query_id, form, field, bounds, false);
- std::vector<string16> autofill_item;
- autofill_item.push_back(string16());
+ std::vector<base::string16> autofill_item;
+ autofill_item.push_back(base::string16());
std::vector<int> autofill_id;
autofill_id.push_back(0);
autofill_external_delegate->OnSuggestionsReturned(

Powered by Google App Engine
This is Rietveld 408576698