| 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_external_delegate.h" | 14 #include "components/autofill/core/browser/autofill_external_delegate.h" |
| 15 #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" | 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 |
| 27 using ::testing::_; | 27 using ::testing::_; |
| 28 using ::testing::AtLeast; | 28 using ::testing::AtLeast; |
| 29 using ::testing::NiceMock; | 29 using ::testing::NiceMock; |
| 30 using base::ASCIIToUTF16; |
| 30 using base::WeakPtr; | 31 using base::WeakPtr; |
| 31 using blink::WebAutofillClient; | 32 using blink::WebAutofillClient; |
| 32 | 33 |
| 33 namespace autofill { | 34 namespace autofill { |
| 34 namespace { | 35 namespace { |
| 35 | 36 |
| 36 class MockAutofillExternalDelegate : public AutofillExternalDelegate { | 37 class MockAutofillExternalDelegate : public AutofillExternalDelegate { |
| 37 public: | 38 public: |
| 38 MockAutofillExternalDelegate(AutofillManager* autofill_manager, | 39 MockAutofillExternalDelegate(AutofillManager* autofill_manager, |
| 39 AutofillDriver* autofill_driver) | 40 AutofillDriver* autofill_driver) |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 EXPECT_EQ(expected_popup_bounds[i].ToString(), | 602 EXPECT_EQ(expected_popup_bounds[i].ToString(), |
| 602 autofill_popup_controller->popup_bounds().ToString()) << | 603 autofill_popup_controller->popup_bounds().ToString()) << |
| 603 "Popup bounds failed to match for test " << i; | 604 "Popup bounds failed to match for test " << i; |
| 604 | 605 |
| 605 // Hide the controller to delete it. | 606 // Hide the controller to delete it. |
| 606 autofill_popup_controller->DoHide(); | 607 autofill_popup_controller->DoHide(); |
| 607 } | 608 } |
| 608 } | 609 } |
| 609 | 610 |
| 610 } // namespace autofill | 611 } // namespace autofill |
| OLD | NEW |