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_AUTOFILL_DRIVER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ |
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "components/autofill/core/common/form_data.h" | 10 #include "components/autofill/core/common/form_data.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 | 69 |
70 // Tells the renderer to accept data list suggestions for |value|. | 70 // Tells the renderer to accept data list suggestions for |value|. |
71 virtual void RendererShouldAcceptDataListSuggestion( | 71 virtual void RendererShouldAcceptDataListSuggestion( |
72 const base::string16& value) = 0; | 72 const base::string16& value) = 0; |
73 | 73 |
74 // Tells the renderer to clear the currently filled Autofill results. | 74 // Tells the renderer to clear the currently filled Autofill results. |
75 virtual void RendererShouldClearFilledForm() = 0; | 75 virtual void RendererShouldClearFilledForm() = 0; |
76 | 76 |
77 // Tells the renderer to clear the currently previewed Autofill results. | 77 // Tells the renderer to clear the currently previewed Autofill results. |
78 virtual void RendererShouldClearPreviewedForm() = 0; | 78 virtual void RendererShouldClearPreviewedForm() = 0; |
| 79 |
| 80 // Tells the renderer to set the node text. |
| 81 virtual void RendererShouldSetNodeText(const base::string16& value) = 0; |
79 }; | 82 }; |
80 | 83 |
81 } // namespace autofill | 84 } // namespace autofill |
82 | 85 |
83 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ | 86 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ |
OLD | NEW |