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

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: Address llya's nits and fix a bug in form structure unit 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/autocheckout_bubble_state.h" 10 #include "components/autofill/core/browser/autocheckout_bubble_state.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 const std::vector<base::string16>& values, 55 const std::vector<base::string16>& values,
56 const std::vector<base::string16>& labels) OVERRIDE; 56 const std::vector<base::string16>& labels) OVERRIDE;
57 virtual void HideAutofillPopup() OVERRIDE; 57 virtual void HideAutofillPopup() OVERRIDE;
58 virtual bool IsAutocompleteEnabled() OVERRIDE; 58 virtual bool IsAutocompleteEnabled() OVERRIDE;
59 59
60 virtual void AddAutocheckoutStep(AutocheckoutStepType step_type) OVERRIDE; 60 virtual void AddAutocheckoutStep(AutocheckoutStepType step_type) OVERRIDE;
61 virtual void UpdateAutocheckoutStep( 61 virtual void UpdateAutocheckoutStep(
62 AutocheckoutStepType step_type, 62 AutocheckoutStepType step_type,
63 AutocheckoutStepStatus step_status) OVERRIDE; 63 AutocheckoutStepStatus step_status) OVERRIDE;
64 64
65 virtual void DetectAccountCreationForms(
66 const std::vector<autofill::FormStructure*>& forms) OVERRIDE;
67
65 private: 68 private:
66 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate); 69 DISALLOW_COPY_AND_ASSIGN(TestAutofillManagerDelegate);
67 }; 70 };
68 71
69 } // namespace autofill 72 } // namespace autofill
70 73
71 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_ 74 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_MANAGER_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698