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

Side by Side Diff: components/autofill/core/browser/autofill_manager.h

Issue 667043002: Add a flag to ignore autocomplete="off" for Autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: fix MSVC error C4373 Created 6 years, 1 month 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
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_CORE_BROWSER_AUTOFILL_MANAGER_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsWithExperimentId); 365 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsWithExperimentId);
366 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch); 366 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch);
367 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, TestExternalDelegate); 367 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, TestExternalDelegate);
368 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, 368 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest,
369 TestTabContentsWithExternalDelegate); 369 TestTabContentsWithExternalDelegate);
370 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, 370 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest,
371 UserHappinessFormLoadAndSubmission); 371 UserHappinessFormLoadAndSubmission);
372 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); 372 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction);
373 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest, 373 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest,
374 FormSubmittedAutocompleteEnabled); 374 FormSubmittedAutocompleteEnabled);
375 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest,
376 AutocompleteOffRespected);
377 FRIEND_TEST_ALL_PREFIXES(AutofillManagerTest,
378 AutocompleteOffRespectedWithFlag);
375 DISALLOW_COPY_AND_ASSIGN(AutofillManager); 379 DISALLOW_COPY_AND_ASSIGN(AutofillManager);
376 }; 380 };
377 381
378 } // namespace autofill 382 } // namespace autofill
379 383
380 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ 384 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698