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/strings/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" |
21 #include "components/autofill/browser/webdata/autofill_webdata_service.h" | 21 #include "components/autofill/browser/webdata/autofill_webdata_service.h" |
22 #include "components/autofill/common/form_data.h" | 22 #include "components/autofill/shared/form_data.h" |
23 #include "components/webdata/common/web_data_service_test_util.h" | 23 #include "components/webdata/common/web_data_service_test_util.h" |
24 #include "content/public/test/test_browser_thread.h" | 24 #include "content/public/test/test_browser_thread.h" |
25 #include "content/public/test/test_utils.h" | 25 #include "content/public/test/test_utils.h" |
26 #include "testing/gmock/include/gmock/gmock.h" | 26 #include "testing/gmock/include/gmock/gmock.h" |
27 #include "testing/gtest/include/gtest/gtest.h" | 27 #include "testing/gtest/include/gtest/gtest.h" |
28 #include "ui/gfx/rect.h" | 28 #include "ui/gfx/rect.h" |
29 | 29 |
30 using content::WebContents; | 30 using content::WebContents; |
31 using testing::_; | 31 using testing::_; |
32 | 32 |
(...skipping 218 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 |