| 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 CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ |
| 6 #define CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ | 6 #define CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/i18n/rtl.h" | 10 #include "base/i18n/rtl.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 const std::vector<base::string16>& labels, | 57 const std::vector<base::string16>& labels, |
| 58 const std::vector<base::string16>& icons, | 58 const std::vector<base::string16>& icons, |
| 59 const std::vector<int>& identifiers, | 59 const std::vector<int>& identifiers, |
| 60 base::WeakPtr<AutofillPopupDelegate> delegate) override; | 60 base::WeakPtr<AutofillPopupDelegate> delegate) override; |
| 61 void UpdateAutofillPopupDataListValues( | 61 void UpdateAutofillPopupDataListValues( |
| 62 const std::vector<base::string16>& values, | 62 const std::vector<base::string16>& values, |
| 63 const std::vector<base::string16>& labels) override; | 63 const std::vector<base::string16>& labels) override; |
| 64 void HideAutofillPopup() override; | 64 void HideAutofillPopup() override; |
| 65 bool IsAutocompleteEnabled() override; | 65 bool IsAutocompleteEnabled() override; |
| 66 void DetectAccountCreationForms( | 66 void DetectAccountCreationForms( |
| 67 content::RenderFrameHost* rfh, |
| 67 const std::vector<autofill::FormStructure*>& forms) override; | 68 const std::vector<autofill::FormStructure*>& forms) override; |
| 68 void DidFillOrPreviewField(const base::string16& autofilled_value, | 69 void DidFillOrPreviewField(const base::string16& autofilled_value, |
| 69 const base::string16& profile_full_name) override; | 70 const base::string16& profile_full_name) override; |
| 70 | 71 |
| 71 // content::WebContentsObserver implementation. | 72 // content::WebContentsObserver implementation. |
| 72 void WebContentsDestroyed() override; | 73 void WebContentsDestroyed() override; |
| 73 | 74 |
| 74 // ZoomObserver implementation. | 75 // ZoomObserver implementation. |
| 75 void OnZoomChanged(const ZoomController::ZoomChangedEventData& data) override; | 76 void OnZoomChanged(const ZoomController::ZoomChangedEventData& data) override; |
| 76 | 77 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 // scoped_ptr. | 111 // scoped_ptr. |
| 111 AutofillKeystoneBridgeWrapper* bridge_wrapper_; | 112 AutofillKeystoneBridgeWrapper* bridge_wrapper_; |
| 112 #endif // defined(OS_MACOSX) && !defined(OS_IOS) | 113 #endif // defined(OS_MACOSX) && !defined(OS_IOS) |
| 113 | 114 |
| 114 DISALLOW_COPY_AND_ASSIGN(ChromeAutofillClient); | 115 DISALLOW_COPY_AND_ASSIGN(ChromeAutofillClient); |
| 115 }; | 116 }; |
| 116 | 117 |
| 117 } // namespace autofill | 118 } // namespace autofill |
| 118 | 119 |
| 119 #endif // CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ | 120 #endif // CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ |
| OLD | NEW |