| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
| 8 #include "base/prefs/testing_pref_service.h" | 8 #include "base/prefs/testing_pref_service.h" |
| 9 #include "base/string16.h" | 9 #include "base/string16.h" |
| 10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 | 243 |
| 244 } // namespace | 244 } // namespace |
| 245 | 245 |
| 246 // Make sure our external delegate is called at the right time. | 246 // Make sure our external delegate is called at the right time. |
| 247 TEST_F(AutocompleteHistoryManagerTest, ExternalDelegate) { | 247 TEST_F(AutocompleteHistoryManagerTest, ExternalDelegate) { |
| 248 // Local version with a stubbed out Send() | 248 // Local version with a stubbed out Send() |
| 249 AutocompleteHistoryManagerStubSend autocomplete_history_manager( | 249 AutocompleteHistoryManagerStubSend autocomplete_history_manager( |
| 250 web_contents()); | 250 web_contents()); |
| 251 | 251 |
| 252 AutofillManager::CreateForWebContentsAndDelegate( | 252 AutofillManager::CreateForWebContentsAndDelegate( |
| 253 web_contents(), &manager_delegate); | 253 web_contents(), &manager_delegate, "en-US"); |
| 254 | 254 |
| 255 MockAutofillExternalDelegate external_delegate(web_contents()); | 255 MockAutofillExternalDelegate external_delegate(web_contents()); |
| 256 autocomplete_history_manager.SetExternalDelegate(&external_delegate); | 256 autocomplete_history_manager.SetExternalDelegate(&external_delegate); |
| 257 | 257 |
| 258 // Should trigger a call to OnSuggestionsReturned, verified by the mock. | 258 // Should trigger a call to OnSuggestionsReturned, verified by the mock. |
| 259 EXPECT_CALL(external_delegate, OnSuggestionsReturned(_, _, _, _, _)); | 259 EXPECT_CALL(external_delegate, OnSuggestionsReturned(_, _, _, _, _)); |
| 260 autocomplete_history_manager.SendSuggestions(NULL); | 260 autocomplete_history_manager.SendSuggestions(NULL); |
| 261 } | 261 } |
| OLD | NEW |