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

Unified Diff: components/autofill/browser/autocomplete_history_manager_unittest.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/autocomplete_history_manager_unittest.cc
diff --git a/components/autofill/browser/autocomplete_history_manager_unittest.cc b/components/autofill/browser/autocomplete_history_manager_unittest.cc
index 3b4bc388fa15fbe4f32354c47863ad2ae7538531..823eca9ff02a2a51cf9cac2304f67d15d6915802 100644
--- a/components/autofill/browser/autocomplete_history_manager_unittest.cc
+++ b/components/autofill/browser/autocomplete_history_manager_unittest.cc
@@ -215,9 +215,9 @@ class MockAutofillExternalDelegate : public AutofillExternalDelegate {
MOCK_METHOD5(OnSuggestionsReturned,
void(int query_id,
- const std::vector<string16>& autofill_values,
- const std::vector<string16>& autofill_labels,
- const std::vector<string16>& autofill_icons,
+ const std::vector<base::string16>& autofill_values,
+ const std::vector<base::string16>& autofill_labels,
+ const std::vector<base::string16>& autofill_icons,
const std::vector<int>& autofill_unique_ids));
private:
@@ -230,7 +230,7 @@ class AutocompleteHistoryManagerStubSend : public AutocompleteHistoryManager {
: AutocompleteHistoryManager(web_contents) {}
// Increase visibility for testing.
- void SendSuggestions(const std::vector<string16>* suggestions) {
+ void SendSuggestions(const std::vector<base::string16>* suggestions) {
AutocompleteHistoryManager::SendSuggestions(suggestions);
}

Powered by Google App Engine
This is Rietveld 408576698