| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #ifndef CHROME_BROWSER_AUTOFILL_TEST_AUTOFILL_MANAGER_DELEGATE_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_TEST_AUTOFILL_MANAGER_DELEGATE_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "chrome/browser/autofill/autofill_manager_delegate.h" | 9 #include "components/autofill/browser/autofill_manager_delegate.h" |
| 10 | 10 |
| 11 namespace autofill { | 11 namespace autofill { |
| 12 | 12 |
| 13 // This class is only for easier writing of testings. All pure virtual functions | 13 // This class is only for easier writing of testings. All pure virtual functions |
| 14 // have been giving empty methods. | 14 // have been giving empty methods. |
| 15 class TestAutofillManagerDelegate : public AutofillManagerDelegate { | 15 class TestAutofillManagerDelegate : public AutofillManagerDelegate { |
| 16 public: | 16 public: |
| 17 TestAutofillManagerDelegate(); | 17 TestAutofillManagerDelegate(); |
| 18 virtual ~TestAutofillManagerDelegate(); | 18 virtual ~TestAutofillManagerDelegate(); |
| 19 | 19 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 AutofillPopupDelegate* delegate) OVERRIDE; | 55 AutofillPopupDelegate* delegate) OVERRIDE; |
| 56 virtual void HideAutofillPopup() OVERRIDE; | 56 virtual void HideAutofillPopup() OVERRIDE; |
| 57 virtual void UpdateProgressBar(double value) OVERRIDE; | 57 virtual void UpdateProgressBar(double value) OVERRIDE; |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate); | 60 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate); |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace autofill | 63 } // namespace autofill |
| 64 | 64 |
| 65 #endif // CHROME_BROWSER_AUTOFILL_TEST_AUTOFILL_MANAGER_DELEGATE_H_ | 65 #endif // COMPONENTS_AUTOFILL_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ |
| OLD | NEW |