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 19 matching lines...) Expand all Loading... |
30 virtual void SetRendererActionOnFormDataReception( | 30 virtual void SetRendererActionOnFormDataReception( |
31 RendererFormDataAction action) OVERRIDE; | 31 RendererFormDataAction action) OVERRIDE; |
32 virtual void SendFormDataToRenderer(int query_id, | 32 virtual void SendFormDataToRenderer(int query_id, |
33 const FormData& data) OVERRIDE; | 33 const FormData& data) OVERRIDE; |
34 virtual void SendAutofillTypePredictionsToRenderer( | 34 virtual void SendAutofillTypePredictionsToRenderer( |
35 const std::vector<FormStructure*>& forms) OVERRIDE; | 35 const std::vector<FormStructure*>& forms) OVERRIDE; |
36 virtual void RendererShouldAcceptDataListSuggestion( | 36 virtual void RendererShouldAcceptDataListSuggestion( |
37 const base::string16& value) OVERRIDE; | 37 const base::string16& value) OVERRIDE; |
38 virtual void RendererShouldClearFilledForm() OVERRIDE; | 38 virtual void RendererShouldClearFilledForm() OVERRIDE; |
39 virtual void RendererShouldClearPreviewedForm() OVERRIDE; | 39 virtual void RendererShouldClearPreviewedForm() OVERRIDE; |
| 40 virtual void RendererShouldSetNodeText(const base::string16& value) OVERRIDE; |
40 | 41 |
41 private: | 42 private: |
42 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; | 43 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; |
43 | 44 |
44 DISALLOW_COPY_AND_ASSIGN(TestAutofillDriver); | 45 DISALLOW_COPY_AND_ASSIGN(TestAutofillDriver); |
45 }; | 46 }; |
46 | 47 |
47 } // namespace autofill | 48 } // namespace autofill |
48 | 49 |
49 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ | 50 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_DRIVER_H_ |
OLD | NEW |