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" |
11 | 11 |
12 namespace base { | 12 namespace base { |
13 class SequencedWorkerPool; | 13 class SequencedWorkerPool; |
14 } | 14 } |
15 | 15 |
16 namespace net { | 16 namespace net { |
17 class URLRequestContextGetter; | 17 class URLRequestContextGetter; |
18 } | 18 } |
19 | 19 |
20 namespace autofill { | 20 namespace autofill { |
21 | 21 |
22 class FormStructure; | 22 class FormStructure; |
23 class PasswordForm; | |
23 | 24 |
24 // Interface that allows Autofill core code to interact with its driver (i.e., | 25 // Interface that allows Autofill core code to interact with its driver (i.e., |
25 // obtain information from it and give information to it). A concrete | 26 // obtain information from it and give information to it). A concrete |
26 // implementation must be provided by the driver. | 27 // implementation must be provided by the driver. |
27 class AutofillDriver { | 28 class AutofillDriver { |
28 public: | 29 public: |
29 // The possible actions that the renderer can take on receiving form data. | 30 // The possible actions that the renderer can take on receiving form data. |
30 enum RendererFormDataAction { | 31 enum RendererFormDataAction { |
31 // The renderer should fill the form data. | 32 // The renderer should fill the form data. |
32 FORM_DATA_ACTION_FILL, | 33 FORM_DATA_ACTION_FILL, |
(...skipping 24 matching lines...) Expand all Loading... | |
57 virtual void SendFormDataToRenderer(int query_id, | 58 virtual void SendFormDataToRenderer(int query_id, |
58 RendererFormDataAction action, | 59 RendererFormDataAction action, |
59 const FormData& data) = 0; | 60 const FormData& data) = 0; |
60 | 61 |
61 // Sends the field type predictions specified in |forms| to the renderer. This | 62 // Sends the field type predictions specified in |forms| to the renderer. This |
62 // method is a no-op if the renderer is not available or the appropriate | 63 // method is a no-op if the renderer is not available or the appropriate |
63 // command-line flag is not set. | 64 // command-line flag is not set. |
64 virtual void SendAutofillTypePredictionsToRenderer( | 65 virtual void SendAutofillTypePredictionsToRenderer( |
65 const std::vector<FormStructure*>& forms) = 0; | 66 const std::vector<FormStructure*>& forms) = 0; |
66 | 67 |
68 // Remove the |password_form| sugesstion | |
vabr (Chromium)
2014/04/01 16:56:08
missing a full-stop + there's a typo (sugesstion).
rchtara
2014/04/03 08:44:50
Done.
| |
69 virtual void RemovePasswordAutofillSuggestion( | |
70 const PasswordForm& password_form) = 0; | |
71 | |
67 // Tells the renderer to accept data list suggestions for |value|. | 72 // Tells the renderer to accept data list suggestions for |value|. |
68 virtual void RendererShouldAcceptDataListSuggestion( | 73 virtual void RendererShouldAcceptDataListSuggestion( |
69 const base::string16& value) = 0; | 74 const base::string16& value) = 0; |
70 | 75 |
71 // Tells the renderer to accept the password autofill suggestion for | 76 // Tells the renderer to accept the password autofill suggestion for |
72 // |username|. | 77 // |username|. |
73 virtual void RendererShouldAcceptPasswordAutofillSuggestion( | 78 virtual void RendererShouldAcceptPasswordAutofillSuggestion( |
74 const base::string16& username) = 0; | 79 const base::string16& username) = 0; |
75 | 80 |
76 // Tells the renderer to clear the currently filled Autofill results. | 81 // Tells the renderer to clear the currently filled Autofill results. |
77 virtual void RendererShouldClearFilledForm() = 0; | 82 virtual void RendererShouldClearFilledForm() = 0; |
78 | 83 |
79 // Tells the renderer to clear the currently previewed Autofill results. | 84 // Tells the renderer to clear the currently previewed Autofill results. |
80 virtual void RendererShouldClearPreviewedForm() = 0; | 85 virtual void RendererShouldClearPreviewedForm() = 0; |
81 | 86 |
82 // Tells the renderer to set the node text. | 87 // Tells the renderer to set the node text. |
83 virtual void RendererShouldSetNodeText(const base::string16& value) = 0; | 88 virtual void RendererShouldSetNodeText(const base::string16& value) = 0; |
84 }; | 89 }; |
85 | 90 |
86 } // namespace autofill | 91 } // namespace autofill |
87 | 92 |
88 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ | 93 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DRIVER_H_ |
OLD | NEW |