| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |