Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_CLIENT_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_CLIENT_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_CLIENT_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/i18n/rtl.h" | 9 #include "base/i18n/rtl.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/prefs/pref_service.h" | 11 #include "base/prefs/pref_service.h" |
| 12 #include "components/autofill/core/browser/autofill_client.h" | 12 #include "components/autofill/core/browser/autofill_client.h" |
| 13 #include "components/autofill/core/browser/autofill_driver.h" | |
|
Ilya Sherman
2014/11/21 18:41:53
nit: Please forward-declare (or omit entirely, sin
Pritam Nikam
2014/11/24 14:45:54
Done.
| |
| 13 | 14 |
| 14 namespace autofill { | 15 namespace autofill { |
| 15 | 16 |
| 16 // This class is for easier writing of tests. | 17 // This class is for easier writing of tests. |
| 17 class TestAutofillClient : public AutofillClient { | 18 class TestAutofillClient : public AutofillClient { |
| 18 public: | 19 public: |
| 19 TestAutofillClient(); | 20 TestAutofillClient(); |
| 20 ~TestAutofillClient() override; | 21 ~TestAutofillClient() override; |
| 21 | 22 |
| 22 // AutofillClient implementation. | 23 // AutofillClient implementation. |
| 23 PersonalDataManager* GetPersonalDataManager() override; | 24 PersonalDataManager* GetPersonalDataManager() override; |
| 24 scoped_refptr<AutofillWebDataService> GetDatabase() override; | 25 scoped_refptr<AutofillWebDataService> GetDatabase() override; |
| 25 PrefService* GetPrefs() override; | 26 PrefService* GetPrefs() override; |
| 26 void HideRequestAutocompleteDialog() override; | 27 void HideRequestAutocompleteDialog() override; |
| 27 void ShowAutofillSettings() override; | 28 void ShowAutofillSettings() override; |
| 28 void ConfirmSaveCreditCard(const AutofillMetrics& metric_logger, | 29 void ConfirmSaveCreditCard(const AutofillDriver& autofill_driver, |
| 30 const AutofillMetrics& metric_logger, | |
| 29 const base::Closure& save_card_callback) override; | 31 const base::Closure& save_card_callback) override; |
| 30 void ShowRequestAutocompleteDialog(const FormData& form, | 32 void ShowRequestAutocompleteDialog(const FormData& form, |
| 31 const GURL& source_url, | 33 const GURL& source_url, |
| 32 const ResultCallback& callback) override; | 34 const ResultCallback& callback) override; |
| 33 void ShowAutofillPopup( | 35 void ShowAutofillPopup( |
| 34 const gfx::RectF& element_bounds, | 36 const gfx::RectF& element_bounds, |
| 35 base::i18n::TextDirection text_direction, | 37 base::i18n::TextDirection text_direction, |
| 36 const std::vector<base::string16>& values, | 38 const std::vector<base::string16>& values, |
| 37 const std::vector<base::string16>& labels, | 39 const std::vector<base::string16>& labels, |
| 38 const std::vector<base::string16>& icons, | 40 const std::vector<base::string16>& icons, |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 55 private: | 57 private: |
| 56 // NULL by default. | 58 // NULL by default. |
| 57 scoped_ptr<PrefService> prefs_; | 59 scoped_ptr<PrefService> prefs_; |
| 58 | 60 |
| 59 DISALLOW_COPY_AND_ASSIGN(TestAutofillClient); | 61 DISALLOW_COPY_AND_ASSIGN(TestAutofillClient); |
| 60 }; | 62 }; |
| 61 | 63 |
| 62 } // namespace autofill | 64 } // namespace autofill |
| 63 | 65 |
| 64 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_CLIENT_H_ | 66 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_CLIENT_H_ |
| OLD | NEW |