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 "base/memory/scoped_ptr.h" | 5 #include "base/memory/scoped_ptr.h" |
6 #include "base/memory/weak_ptr.h" | 6 #include "base/memory/weak_ptr.h" |
7 #include "base/prefs/pref_service.h" | 7 #include "base/prefs/pref_service.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" | 9 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" |
10 #include "chrome/browser/ui/autofill/autofill_popup_view.h" | 10 #include "chrome/browser/ui/autofill/autofill_popup_view.h" |
11 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 11 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
12 #include "chrome/test/base/testing_profile.h" | 12 #include "chrome/test/base/testing_profile.h" |
13 #include "components/autofill/content/browser/autofill_driver_impl.h" | 13 #include "components/autofill/content/browser/autofill_driver_impl.h" |
14 #include "components/autofill/core/browser/autofill_common_test.h" | |
15 #include "components/autofill/core/browser/autofill_external_delegate.h" | 14 #include "components/autofill/core/browser/autofill_external_delegate.h" |
16 #include "components/autofill/core/browser/autofill_manager.h" | 15 #include "components/autofill/core/browser/autofill_manager.h" |
| 16 #include "components/autofill/core/browser/autofill_test_utils.h" |
17 #include "components/autofill/core/browser/test_autofill_external_delegate.h" | 17 #include "components/autofill/core/browser/test_autofill_external_delegate.h" |
18 #include "components/autofill/core/browser/test_autofill_manager_delegate.h" | 18 #include "components/autofill/core/browser/test_autofill_manager_delegate.h" |
19 #include "grit/webkit_resources.h" | 19 #include "grit/webkit_resources.h" |
20 #include "testing/gmock/include/gmock/gmock.h" | 20 #include "testing/gmock/include/gmock/gmock.h" |
21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
22 #include "third_party/WebKit/public/web/WebAutofillClient.h" | 22 #include "third_party/WebKit/public/web/WebAutofillClient.h" |
23 #include "ui/base/resource/resource_bundle.h" | 23 #include "ui/base/resource/resource_bundle.h" |
24 #include "ui/gfx/display.h" | 24 #include "ui/gfx/display.h" |
25 #include "ui/gfx/rect.h" | 25 #include "ui/gfx/rect.h" |
26 | 26 |
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 EXPECT_EQ(expected_popup_bounds[i].ToString(), | 605 EXPECT_EQ(expected_popup_bounds[i].ToString(), |
606 autofill_popup_controller->popup_bounds().ToString()) << | 606 autofill_popup_controller->popup_bounds().ToString()) << |
607 "Popup bounds failed to match for test " << i; | 607 "Popup bounds failed to match for test " << i; |
608 | 608 |
609 // Hide the controller to delete it. | 609 // Hide the controller to delete it. |
610 autofill_popup_controller->DoHide(); | 610 autofill_popup_controller->DoHide(); |
611 } | 611 } |
612 } | 612 } |
613 | 613 |
614 } // namespace autofill | 614 } // namespace autofill |
OLD | NEW |