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

Side by Side Diff: components/autofill/content/renderer/autofill_agent.h

Issue 241193002: Password autofill: Check for user gesture switches to new Blink backend (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | components/autofill/content/renderer/autofill_agent.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_RENDERER_AUTOFILL_AGENT_H_ 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_
6 #define COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ 6 #define COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 virtual void textFieldDidReceiveKeyDown( 83 virtual void textFieldDidReceiveKeyDown(
84 const blink::WebInputElement& element, 84 const blink::WebInputElement& element,
85 const blink::WebKeyboardEvent& event); 85 const blink::WebKeyboardEvent& event);
86 virtual void didRequestAutocomplete( 86 virtual void didRequestAutocomplete(
87 const blink::WebFormElement& form, 87 const blink::WebFormElement& form,
88 const blink::WebAutocompleteParams& details); 88 const blink::WebAutocompleteParams& details);
89 virtual void setIgnoreTextChanges(bool ignore); 89 virtual void setIgnoreTextChanges(bool ignore);
90 virtual void didAssociateFormControls( 90 virtual void didAssociateFormControls(
91 const blink::WebVector<blink::WebNode>& nodes); 91 const blink::WebVector<blink::WebNode>& nodes);
92 virtual void openTextDataListChooser(const blink::WebInputElement& element); 92 virtual void openTextDataListChooser(const blink::WebInputElement& element);
93 virtual void firstUserGestureObserved() OVERRIDE;
vabr (Chromium) 2014/04/17 17:43:30 It looks like all methods in this block should hav
Ilya Sherman 2014/04/17 21:28:47 Actually, per request from jamesr@, none of them s
vabr (Chromium) 2014/04/18 18:23:53 Makes sense, thanks! OVERRIDE removed.
93 94
94 void OnFieldTypePredictionsAvailable( 95 void OnFieldTypePredictionsAvailable(
95 const std::vector<FormDataPredictions>& forms); 96 const std::vector<FormDataPredictions>& forms);
96 void OnFillForm(int query_id, const FormData& form); 97 void OnFillForm(int query_id, const FormData& form);
97 void OnPreviewForm(int query_id, const FormData& form); 98 void OnPreviewForm(int query_id, const FormData& form);
98 99
99 // For external Autofill selection. 100 // For external Autofill selection.
100 void OnClearForm(); 101 void OnClearForm();
101 void OnClearPreviewedForm(); 102 void OnClearPreviewedForm();
102 void OnFillFieldWithValue(const base::string16& value); 103 void OnFillFieldWithValue(const base::string16& value);
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 NoCancelOnSubframeNavigateAfterDone); 239 NoCancelOnSubframeNavigateAfterDone);
239 FRIEND_TEST_ALL_PREFIXES(RequestAutocompleteRendererTest, 240 FRIEND_TEST_ALL_PREFIXES(RequestAutocompleteRendererTest,
240 InvokingTwiceOnlyShowsOnce); 241 InvokingTwiceOnlyShowsOnce);
241 242
242 DISALLOW_COPY_AND_ASSIGN(AutofillAgent); 243 DISALLOW_COPY_AND_ASSIGN(AutofillAgent);
243 }; 244 };
244 245
245 } // namespace autofill 246 } // namespace autofill
246 247
247 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ 248 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_
OLDNEW
« no previous file with comments | « no previous file | components/autofill/content/renderer/autofill_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698