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

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

Issue 119493004: [Password Autofill] Trigger onChange events in JavaScript when autofilling passwords. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 base::WeakPtrFactory<AutofillAgent> weak_ptr_factory_; 224 base::WeakPtrFactory<AutofillAgent> weak_ptr_factory_;
225 225
226 friend class PasswordAutofillAgentTest; 226 friend class PasswordAutofillAgentTest;
227 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, FillFormElement); 227 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, FillFormElement);
228 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, SendForms); 228 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, SendForms);
229 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, SendDynamicForms); 229 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, SendDynamicForms);
230 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, ShowAutofillWarning); 230 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, ShowAutofillWarning);
231 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, WaitUsername); 231 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, WaitUsername);
232 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, SuggestionAccept); 232 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, SuggestionAccept);
233 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, SuggestionSelect); 233 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, SuggestionSelect);
234 FRIEND_TEST_ALL_PREFIXES(
235 PasswordAutofillAgentTest,
236 PasswordAutofillTriggersOnChangeEventsWaitForUsername);
234 237
235 DISALLOW_COPY_AND_ASSIGN(AutofillAgent); 238 DISALLOW_COPY_AND_ASSIGN(AutofillAgent);
236 }; 239 };
237 240
238 } // namespace autofill 241 } // namespace autofill
239 242
240 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ 243 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698