| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_ |
| OLD | NEW |