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

Side by Side Diff: components/autofill/browser/test_autofill_manager_delegate.cc

Issue 12457033: Implements SendAutocheckoutStatus API calls for stats tracking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing unit tests Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #include "components/autofill/browser/test_autofill_manager_delegate.h" 5 #include "components/autofill/browser/test_autofill_manager_delegate.h"
6 6
7 namespace autofill { 7 namespace autofill {
8 8
9 TestAutofillManagerDelegate::TestAutofillManagerDelegate() {} 9 TestAutofillManagerDelegate::TestAutofillManagerDelegate() {}
10 TestAutofillManagerDelegate::~TestAutofillManagerDelegate() {} 10 TestAutofillManagerDelegate::~TestAutofillManagerDelegate() {}
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 const gfx::NativeView& native_view, 54 const gfx::NativeView& native_view,
55 const base::Callback<void(bool)>& callback) {} 55 const base::Callback<void(bool)>& callback) {}
56 56
57 void TestAutofillManagerDelegate::HideAutocheckoutBubble() {} 57 void TestAutofillManagerDelegate::HideAutocheckoutBubble() {}
58 58
59 void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog( 59 void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog(
60 const FormData& form, 60 const FormData& form,
61 const GURL& source_url, 61 const GURL& source_url,
62 const AutofillMetrics& metric_logger, 62 const AutofillMetrics& metric_logger,
63 DialogType dialog_type, 63 DialogType dialog_type,
64 const base::Callback<void(const FormStructure*)>& callback) {} 64 const base::Callback<void(const FormStructure*,
65 const std::string&)>& callback) {}
65 66
66 void TestAutofillManagerDelegate::RequestAutocompleteDialogClosed() {} 67 void TestAutofillManagerDelegate::RequestAutocompleteDialogClosed() {}
67 68
68 void TestAutofillManagerDelegate::ShowAutofillPopup( 69 void TestAutofillManagerDelegate::ShowAutofillPopup(
69 const gfx::RectF& element_bounds, 70 const gfx::RectF& element_bounds,
70 const std::vector<string16>& values, 71 const std::vector<string16>& values,
71 const std::vector<string16>& labels, 72 const std::vector<string16>& labels,
72 const std::vector<string16>& icons, 73 const std::vector<string16>& icons,
73 const std::vector<int>& identifiers, 74 const std::vector<int>& identifiers,
74 AutofillPopupDelegate* delegate) {} 75 AutofillPopupDelegate* delegate) {}
75 76
76 void TestAutofillManagerDelegate::HideAutofillPopup() {} 77 void TestAutofillManagerDelegate::HideAutofillPopup() {}
77 78
78 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} 79 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {}
79 80
80 } // namespace autofill 81 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/browser/test_autofill_manager_delegate.h ('k') | components/autofill/browser/wallet/wallet_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698