| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CONTENT_AUTOFILL_DRIVER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ |
| 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ | 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 RendererShouldAcceptDataListSuggestion( | 55 virtual void RendererShouldAcceptDataListSuggestion( |
| 56 const base::string16& value) OVERRIDE; | 56 const base::string16& value) OVERRIDE; |
| 57 virtual void RendererShouldAcceptPasswordAutofillSuggestion( | 57 virtual void RendererShouldAcceptPasswordAutofillSuggestion( |
| 58 const base::string16& username) OVERRIDE; | 58 const base::string16& username) OVERRIDE; |
| 59 virtual void RendererShouldClearFilledForm() OVERRIDE; | 59 virtual void RendererShouldClearFilledForm() OVERRIDE; |
| 60 virtual void RendererShouldClearPreviewedForm() OVERRIDE; | 60 virtual void RendererShouldClearPreviewedForm() OVERRIDE; |
| 61 virtual void RendererShouldSetNodeText(const base::string16& value) OVERRIDE; | 61 virtual void RendererShouldFillFieldWithValue( |
| 62 const base::string16& value) OVERRIDE; |
| 63 virtual void RendererShouldPreviewFieldWithValue( |
| 64 const base::string16& value) OVERRIDE; |
| 62 | 65 |
| 63 // Returns the WebContents with which this instance is associated. | 66 // Returns the WebContents with which this instance is associated. |
| 64 content::WebContents* GetWebContents(); | 67 content::WebContents* GetWebContents(); |
| 65 | 68 |
| 66 AutofillExternalDelegate* autofill_external_delegate() { | 69 AutofillExternalDelegate* autofill_external_delegate() { |
| 67 return &autofill_external_delegate_; | 70 return &autofill_external_delegate_; |
| 68 } | 71 } |
| 69 | 72 |
| 70 AutofillManager* autofill_manager() { return autofill_manager_.get(); } | 73 AutofillManager* autofill_manager() { return autofill_manager_.get(); } |
| 71 | 74 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 99 // case where the Autofill native UI is enabled. | 102 // case where the Autofill native UI is enabled. |
| 100 AutofillExternalDelegate autofill_external_delegate_; | 103 AutofillExternalDelegate autofill_external_delegate_; |
| 101 | 104 |
| 102 // Driver for the interactive autocomplete dialog. | 105 // Driver for the interactive autocomplete dialog. |
| 103 RequestAutocompleteManager request_autocomplete_manager_; | 106 RequestAutocompleteManager request_autocomplete_manager_; |
| 104 }; | 107 }; |
| 105 | 108 |
| 106 } // namespace autofill | 109 } // namespace autofill |
| 107 | 110 |
| 108 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ | 111 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ |
| OLD | NEW |