| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 bool IsOffTheRecord() const override; | 26 bool IsOffTheRecord() const override; |
| 27 // Returns the value passed in to the last call to |SetURLRequestContext()| | 27 // Returns the value passed in to the last call to |SetURLRequestContext()| |
| 28 // or NULL if that method has never been called. | 28 // or NULL if that method has never been called. |
| 29 net::URLRequestContextGetter* GetURLRequestContext() override; | 29 net::URLRequestContextGetter* GetURLRequestContext() override; |
| 30 base::SequencedWorkerPool* GetBlockingPool() override; | 30 base::SequencedWorkerPool* GetBlockingPool() override; |
| 31 bool RendererIsAvailable() override; | 31 bool RendererIsAvailable() override; |
| 32 void SendFormDataToRenderer(int query_id, | 32 void SendFormDataToRenderer(int query_id, |
| 33 RendererFormDataAction action, | 33 RendererFormDataAction action, |
| 34 const FormData& data) override; | 34 const FormData& data) override; |
| 35 void PingRenderer() override; | 35 void PingRenderer() override; |
| 36 void DetectAccountCreationForms( |
| 37 const std::vector<autofill::FormStructure*>& forms) override; |
| 36 void SendAutofillTypePredictionsToRenderer( | 38 void SendAutofillTypePredictionsToRenderer( |
| 37 const std::vector<FormStructure*>& forms) override; | 39 const std::vector<FormStructure*>& forms) override; |
| 38 void RendererShouldAcceptDataListSuggestion( | 40 void RendererShouldAcceptDataListSuggestion( |
| 39 const base::string16& value) override; | 41 const base::string16& value) override; |
| 40 void RendererShouldClearFilledForm() override; | 42 void RendererShouldClearFilledForm() override; |
| 41 void RendererShouldClearPreviewedForm() override; | 43 void RendererShouldClearPreviewedForm() override; |
| 42 void RendererShouldFillFieldWithValue(const base::string16& value) override; | 44 void RendererShouldFillFieldWithValue(const base::string16& value) override; |
| 43 void RendererShouldPreviewFieldWithValue( | 45 void RendererShouldPreviewFieldWithValue( |
| 44 const base::string16& value) override; | 46 const base::string16& value) override; |
| 45 | 47 |
| 46 // Methods that tests can use to specialize functionality. | 48 // Methods that tests can use to specialize functionality. |
| 47 | 49 |
| 48 // Sets the URL request context for this instance. |url_request_context| | 50 // Sets the URL request context for this instance. |url_request_context| |
| 49 // should outlive this instance. | 51 // should outlive this instance. |
| 50 void SetURLRequestContext(net::URLRequestContextGetter* url_request_context); | 52 void SetURLRequestContext(net::URLRequestContextGetter* url_request_context); |
| 51 | 53 |
| 52 private: | 54 private: |
| 53 scoped_ptr<base::SequencedWorkerPoolOwner> blocking_pool_owner_; | 55 scoped_ptr<base::SequencedWorkerPoolOwner> blocking_pool_owner_; |
| 54 net::URLRequestContextGetter* url_request_context_; | 56 net::URLRequestContextGetter* url_request_context_; |
| 55 | 57 |
| 56 DISALLOW_COPY_AND_ASSIGN(TestAutofillDriver); | 58 DISALLOW_COPY_AND_ASSIGN(TestAutofillDriver); |
| 57 }; | 59 }; |
| 58 | 60 |
| 59 } // namespace autofill | 61 } // namespace autofill |
| 60 | 62 |
| 61 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ | 63 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ |
| OLD | NEW |