| 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/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/common/form_data.h" |
| 16 #include "components/autofill/common/form_field_data.h" | 16 #include "components/autofill/common/form_field_data.h" |
| 17 #include "components/autofill/common/password_form_fill_data.h" | 17 #include "components/autofill/common/password_form_fill_data.h" |
| 18 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 EXPECT_CALL(manager_delegate_, HideAutofillPopup()); | 323 EXPECT_CALL(manager_delegate_, HideAutofillPopup()); |
| 324 | 324 |
| 325 external_delegate_->OnSuggestionsReturned(kQueryId, | 325 external_delegate_->OnSuggestionsReturned(kQueryId, |
| 326 autofill_items, | 326 autofill_items, |
| 327 autofill_items, | 327 autofill_items, |
| 328 autofill_items, | 328 autofill_items, |
| 329 autofill_ids); | 329 autofill_ids); |
| 330 } | 330 } |
| 331 | 331 |
| 332 } // namespace autofill | 332 } // namespace autofill |
| OLD | NEW |