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/testing_pref_service.h" | 7 #include "base/prefs/testing_pref_service.h" |
8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
9 #include "chrome/browser/autofill/autofill_external_delegate.h" | |
10 #include "chrome/browser/autofill/autofill_manager.h" | |
11 #include "chrome/browser/autofill/test_autofill_external_delegate.h" | |
12 #include "chrome/browser/autofill/test_autofill_manager_delegate.h" | |
13 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" | 9 #include "chrome/browser/ui/autofill/autofill_popup_controller_impl.h" |
14 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 10 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
15 #include "chrome/test/base/testing_profile.h" | 11 #include "chrome/test/base/testing_profile.h" |
| 12 #include "components/autofill/browser/autofill_external_delegate.h" |
| 13 #include "components/autofill/browser/autofill_manager.h" |
| 14 #include "components/autofill/browser/test_autofill_external_delegate.h" |
| 15 #include "components/autofill/browser/test_autofill_manager_delegate.h" |
16 #include "testing/gmock/include/gmock/gmock.h" | 16 #include "testing/gmock/include/gmock/gmock.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h" | 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h" |
19 #include "ui/gfx/display.h" | 19 #include "ui/gfx/display.h" |
20 #include "ui/gfx/rect.h" | 20 #include "ui/gfx/rect.h" |
21 | 21 |
22 using ::testing::_; | 22 using ::testing::_; |
23 using ::testing::AtLeast; | 23 using ::testing::AtLeast; |
24 using ::testing::NiceMock; | 24 using ::testing::NiceMock; |
25 using base::WeakPtr; | 25 using base::WeakPtr; |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 autofill_popup_controller->Show(names, names, names, autofill_ids); | 427 autofill_popup_controller->Show(names, names, names, autofill_ids); |
428 | 428 |
429 EXPECT_EQ(expected_popup_bounds[i].ToString(), | 429 EXPECT_EQ(expected_popup_bounds[i].ToString(), |
430 autofill_popup_controller->popup_bounds().ToString()) << | 430 autofill_popup_controller->popup_bounds().ToString()) << |
431 "Popup bounds failed to match for test " << i; | 431 "Popup bounds failed to match for test " << i; |
432 | 432 |
433 // Hide the controller to delete it. | 433 // Hide the controller to delete it. |
434 autofill_popup_controller->DoHide(); | 434 autofill_popup_controller->DoHide(); |
435 } | 435 } |
436 } | 436 } |
OLD | NEW |