Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: chrome/browser/ui/autofill/chrome_autofill_client.h

Issue 707173004: Refactor Autofill for out of process iframes (OOPIF). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 const std::vector<base::string16>& values, 56 const std::vector<base::string16>& values,
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(
67 const std::vector<autofill::FormStructure*>& forms) override;
68 void DidFillOrPreviewField(const base::string16& autofilled_value, 66 void DidFillOrPreviewField(const base::string16& autofilled_value,
69 const base::string16& profile_full_name) override; 67 const base::string16& profile_full_name) override;
70 68
71 // content::WebContentsObserver implementation. 69 // content::WebContentsObserver implementation.
72 void WebContentsDestroyed() override; 70 void WebContentsDestroyed() override;
73 71
74 // ZoomObserver implementation. 72 // ZoomObserver implementation.
75 void OnZoomChanged(const ZoomController::ZoomChangedEventData& data) override; 73 void OnZoomChanged(const ZoomController::ZoomChangedEventData& data) override;
76 74
77 // Exposed for testing. 75 // Exposed for testing.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 // scoped_ptr. 108 // scoped_ptr.
111 AutofillKeystoneBridgeWrapper* bridge_wrapper_; 109 AutofillKeystoneBridgeWrapper* bridge_wrapper_;
112 #endif // defined(OS_MACOSX) && !defined(OS_IOS) 110 #endif // defined(OS_MACOSX) && !defined(OS_IOS)
113 111
114 DISALLOW_COPY_AND_ASSIGN(ChromeAutofillClient); 112 DISALLOW_COPY_AND_ASSIGN(ChromeAutofillClient);
115 }; 113 };
116 114
117 } // namespace autofill 115 } // namespace autofill
118 116
119 #endif // CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ 117 #endif // CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698