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

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: Temporarily disable part of the test while waiting on http://crbug.com/333144 to be fixed. Created 6 years, 11 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
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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 base::WeakPtrFactory<AutofillAgent> weak_ptr_factory_; 223 base::WeakPtrFactory<AutofillAgent> weak_ptr_factory_;
224 224
225 friend class PasswordAutofillAgentTest; 225 friend class PasswordAutofillAgentTest;
226 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, FillFormElement); 226 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, FillFormElement);
227 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, SendForms); 227 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, SendForms);
228 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, SendDynamicForms); 228 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, SendDynamicForms);
229 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, ShowAutofillWarning); 229 FRIEND_TEST_ALL_PREFIXES(ChromeRenderViewTest, ShowAutofillWarning);
230 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, WaitUsername); 230 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, WaitUsername);
231 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, SuggestionAccept); 231 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, SuggestionAccept);
232 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, SuggestionSelect); 232 FRIEND_TEST_ALL_PREFIXES(PasswordAutofillAgentTest, SuggestionSelect);
233 FRIEND_TEST_ALL_PREFIXES(
234 PasswordAutofillAgentTest,
235 PasswordAutofillTriggersOnChangeEventsWaitForUsername);
233 236
234 DISALLOW_COPY_AND_ASSIGN(AutofillAgent); 237 DISALLOW_COPY_AND_ASSIGN(AutofillAgent);
235 }; 238 };
236 239
237 } // namespace autofill 240 } // namespace autofill
238 241
239 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_ 242 #endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_AUTOFILL_AGENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698