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

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

Issue 23432002: Generate passwords only for forms that autofill server marks as account creation forms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix password generation manager browser test. Created 7 years, 3 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
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_TEST_AUTOFILL_MANAGER_DELEGATE_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/i18n/rtl.h" 9 #include "base/i18n/rtl.h"
10 #include "components/autofill/core/browser/autofill_manager_delegate.h" 10 #include "components/autofill/core/browser/autofill_manager_delegate.h"
(...skipping 28 matching lines...) Expand all
39 const std::vector<base::string16>& labels, 39 const std::vector<base::string16>& labels,
40 const std::vector<base::string16>& icons, 40 const std::vector<base::string16>& icons,
41 const std::vector<int>& identifiers, 41 const std::vector<int>& identifiers,
42 base::WeakPtr<AutofillPopupDelegate> delegate) OVERRIDE; 42 base::WeakPtr<AutofillPopupDelegate> delegate) OVERRIDE;
43 virtual void UpdateAutofillPopupDataListValues( 43 virtual void UpdateAutofillPopupDataListValues(
44 const std::vector<base::string16>& values, 44 const std::vector<base::string16>& values,
45 const std::vector<base::string16>& labels) OVERRIDE; 45 const std::vector<base::string16>& labels) OVERRIDE;
46 virtual void HideAutofillPopup() OVERRIDE; 46 virtual void HideAutofillPopup() OVERRIDE;
47 virtual bool IsAutocompleteEnabled() OVERRIDE; 47 virtual bool IsAutocompleteEnabled() OVERRIDE;
48 48
49 virtual void DetectAccountCreationForms(
50 const std::vector<autofill::FormStructure*>& forms) OVERRIDE;
51
49 private: 52 private:
50 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate); 53 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate);
51 }; 54 };
52 55
53 } // namespace autofill 56 } // namespace autofill
54 57
55 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ 58 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698