| 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/run_loop.h" | 9 #include "base/run_loop.h" |
| 10 #include "base/string16.h" | 10 #include "base/strings/string16.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 #include "base/synchronization/waitable_event.h" | 12 #include "base/synchronization/waitable_event.h" |
| 13 #include "chrome/browser/webdata/web_data_service_factory.h" | 13 #include "chrome/browser/webdata/web_data_service_factory.h" |
| 14 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 14 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
| 15 #include "chrome/test/base/testing_browser_process.h" | 15 #include "chrome/test/base/testing_browser_process.h" |
| 16 #include "chrome/test/base/testing_profile.h" | 16 #include "chrome/test/base/testing_profile.h" |
| 17 #include "components/autofill/browser/autocomplete_history_manager.h" | 17 #include "components/autofill/browser/autocomplete_history_manager.h" |
| 18 #include "components/autofill/browser/autofill_external_delegate.h" | 18 #include "components/autofill/browser/autofill_external_delegate.h" |
| 19 #include "components/autofill/browser/autofill_manager.h" | 19 #include "components/autofill/browser/autofill_manager.h" |
| 20 #include "components/autofill/browser/test_autofill_manager_delegate.h" | 20 #include "components/autofill/browser/test_autofill_manager_delegate.h" |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 251 |
| 252 MockAutofillExternalDelegate external_delegate(web_contents()); | 252 MockAutofillExternalDelegate external_delegate(web_contents()); |
| 253 autocomplete_history_manager.SetExternalDelegate(&external_delegate); | 253 autocomplete_history_manager.SetExternalDelegate(&external_delegate); |
| 254 | 254 |
| 255 // Should trigger a call to OnSuggestionsReturned, verified by the mock. | 255 // Should trigger a call to OnSuggestionsReturned, verified by the mock. |
| 256 EXPECT_CALL(external_delegate, OnSuggestionsReturned(_, _, _, _, _)); | 256 EXPECT_CALL(external_delegate, OnSuggestionsReturned(_, _, _, _, _)); |
| 257 autocomplete_history_manager.SendSuggestions(NULL); | 257 autocomplete_history_manager.SendSuggestions(NULL); |
| 258 } | 258 } |
| 259 | 259 |
| 260 } // namespace autofill | 260 } // namespace autofill |
| OLD | NEW |