| 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);
|
| }
|
|
|
|
|