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

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

Issue 15769018: [Autofill] Determine Popup RTLness from page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android compile Created 7 years, 6 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 (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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog( 45 void TestAutofillManagerDelegate::ShowRequestAutocompleteDialog(
46 const FormData& form, 46 const FormData& form,
47 const GURL& source_url, 47 const GURL& source_url,
48 DialogType dialog_type, 48 DialogType dialog_type,
49 const base::Callback<void(const FormStructure*, 49 const base::Callback<void(const FormStructure*,
50 const std::string&)>& callback) {} 50 const std::string&)>& callback) {}
51 51
52 void TestAutofillManagerDelegate::ShowAutofillPopup( 52 void TestAutofillManagerDelegate::ShowAutofillPopup(
53 const gfx::RectF& element_bounds, 53 const gfx::RectF& element_bounds,
54 base::i18n::TextDirection text_direction,
54 const std::vector<base::string16>& values, 55 const std::vector<base::string16>& values,
55 const std::vector<base::string16>& labels, 56 const std::vector<base::string16>& labels,
56 const std::vector<base::string16>& icons, 57 const std::vector<base::string16>& icons,
57 const std::vector<int>& identifiers, 58 const std::vector<int>& identifiers,
58 base::WeakPtr<AutofillPopupDelegate> delegate) {} 59 base::WeakPtr<AutofillPopupDelegate> delegate) {}
59 60
60 void TestAutofillManagerDelegate::HideAutofillPopup() {} 61 void TestAutofillManagerDelegate::HideAutofillPopup() {}
61 62
62 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {} 63 void TestAutofillManagerDelegate::UpdateProgressBar(double value) {}
63 64
64 } // namespace autofill 65 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/browser/test_autofill_manager_delegate.h ('k') | components/autofill/common/autocheckout_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698