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/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 10 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
11 #include "chrome/test/base/testing_profile.h" | 11 #include "chrome/test/base/testing_profile.h" |
12 #include "components/autofill/browser/autofill_manager.h" | 12 #include "components/autofill/browser/autofill_manager.h" |
13 #include "components/autofill/browser/test_autofill_external_delegate.h" | 13 #include "components/autofill/browser/test_autofill_external_delegate.h" |
14 #include "components/autofill/browser/test_autofill_manager_delegate.h" | 14 #include "components/autofill/browser/test_autofill_manager_delegate.h" |
15 #include "components/autofill/common/form_data.h" | 15 #include "components/autofill/shared/form_data.h" |
16 #include "components/autofill/common/form_field_data.h" | 16 #include "components/autofill/shared/form_field_data.h" |
17 #include "components/autofill/common/password_form_fill_data.h" | 17 #include "components/autofill/shared/password_form_fill_data.h" |
18 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h" | 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h" |
21 #include "ui/gfx/rect.h" | 21 #include "ui/gfx/rect.h" |
22 | 22 |
23 using testing::_; | 23 using testing::_; |
24 using WebKit::WebAutofillClient; | 24 using WebKit::WebAutofillClient; |
25 | 25 |
26 namespace autofill { | 26 namespace autofill { |
27 | 27 |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 EXPECT_CALL(manager_delegate_, HideAutofillPopup()); | 351 EXPECT_CALL(manager_delegate_, HideAutofillPopup()); |
352 | 352 |
353 external_delegate_->OnSuggestionsReturned(kQueryId, | 353 external_delegate_->OnSuggestionsReturned(kQueryId, |
354 autofill_items, | 354 autofill_items, |
355 autofill_items, | 355 autofill_items, |
356 autofill_items, | 356 autofill_items, |
357 autofill_ids); | 357 autofill_ids); |
358 } | 358 } |
359 | 359 |
360 } // namespace autofill | 360 } // namespace autofill |
OLD | NEW |