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_CONTENT_BROWSER_AUTOFILL_DRIVER_IMPL_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IMPL_H_ |
6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IMPL_H_ | 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 // AutofillDriver: | 45 // AutofillDriver: |
46 virtual bool IsOffTheRecord() const OVERRIDE; | 46 virtual bool IsOffTheRecord() const OVERRIDE; |
47 virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE; | 47 virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE; |
48 virtual base::SequencedWorkerPool* GetBlockingPool() OVERRIDE; | 48 virtual base::SequencedWorkerPool* GetBlockingPool() OVERRIDE; |
49 virtual bool RendererIsAvailable() OVERRIDE; | 49 virtual bool RendererIsAvailable() OVERRIDE; |
50 virtual void SendFormDataToRenderer(int query_id, | 50 virtual void SendFormDataToRenderer(int query_id, |
51 RendererFormDataAction action, | 51 RendererFormDataAction action, |
52 const FormData& data) OVERRIDE; | 52 const FormData& data) OVERRIDE; |
53 virtual void SendAutofillTypePredictionsToRenderer( | 53 virtual void SendAutofillTypePredictionsToRenderer( |
54 const std::vector<FormStructure*>& forms) OVERRIDE; | 54 const std::vector<FormStructure*>& forms) OVERRIDE; |
| 55 virtual void RemovePasswordAutofillSuggestion( |
| 56 const PasswordForm& password_form) OVERRIDE; |
55 virtual void RendererShouldAcceptDataListSuggestion( | 57 virtual void RendererShouldAcceptDataListSuggestion( |
56 const base::string16& value) OVERRIDE; | 58 const base::string16& value) OVERRIDE; |
57 virtual void RendererShouldAcceptPasswordAutofillSuggestion( | 59 virtual void RendererShouldAcceptPasswordAutofillSuggestion( |
58 const base::string16& username) OVERRIDE; | 60 const base::string16& username) OVERRIDE; |
59 virtual void RendererShouldClearFilledForm() OVERRIDE; | 61 virtual void RendererShouldClearFilledForm() OVERRIDE; |
60 virtual void RendererShouldClearPreviewedForm() OVERRIDE; | 62 virtual void RendererShouldClearPreviewedForm() OVERRIDE; |
61 virtual void RendererShouldSetNodeText(const base::string16& value) OVERRIDE; | 63 virtual void RendererShouldSetNodeText(const base::string16& value) OVERRIDE; |
62 | 64 |
63 // Returns the WebContents with which this instance is associated. | 65 // Returns the WebContents with which this instance is associated. |
64 content::WebContents* GetWebContents(); | 66 content::WebContents* GetWebContents(); |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 // case where the Autofill native UI is enabled. | 101 // case where the Autofill native UI is enabled. |
100 AutofillExternalDelegate autofill_external_delegate_; | 102 AutofillExternalDelegate autofill_external_delegate_; |
101 | 103 |
102 // Driver for the interactive autocomplete dialog. | 104 // Driver for the interactive autocomplete dialog. |
103 RequestAutocompleteManager request_autocomplete_manager_; | 105 RequestAutocompleteManager request_autocomplete_manager_; |
104 }; | 106 }; |
105 | 107 |
106 } // namespace autofill | 108 } // namespace autofill |
107 | 109 |
108 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IMPL_H_ | 110 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IMPL_H_ |
OLD | NEW |