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

Side by Side Diff: android_webview/browser/aw_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
« no previous file with comments | « android_webview/browser/aw_autofill_manager_delegate.h ('k') | base/i18n/rtl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "android_webview/browser/aw_autofill_manager_delegate.h" 5 #include "android_webview/browser/aw_autofill_manager_delegate.h"
6 #include "android_webview/browser/aw_browser_context.h" 6 #include "android_webview/browser/aw_browser_context.h"
7 #include "android_webview/browser/aw_content_browser_client.h" 7 #include "android_webview/browser/aw_content_browser_client.h"
8 #include "android_webview/browser/aw_pref_store.h" 8 #include "android_webview/browser/aw_pref_store.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/prefs/pref_registry_simple.h" 10 #include "base/prefs/pref_registry_simple.h"
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 void AwAutofillManagerDelegate::ShowRequestAutocompleteDialog( 102 void AwAutofillManagerDelegate::ShowRequestAutocompleteDialog(
103 const autofill::FormData& form, 103 const autofill::FormData& form,
104 const GURL& source_url, 104 const GURL& source_url,
105 autofill::DialogType dialog_type, 105 autofill::DialogType dialog_type,
106 const base::Callback<void(const autofill::FormStructure*, 106 const base::Callback<void(const autofill::FormStructure*,
107 const std::string&)>& callback) { 107 const std::string&)>& callback) {
108 } 108 }
109 109
110 void AwAutofillManagerDelegate::ShowAutofillPopup( 110 void AwAutofillManagerDelegate::ShowAutofillPopup(
111 const gfx::RectF& element_bounds, 111 const gfx::RectF& element_bounds,
112 base::i18n::TextDirection text_direction,
112 const std::vector<string16>& values, 113 const std::vector<string16>& values,
113 const std::vector<string16>& labels, 114 const std::vector<string16>& labels,
114 const std::vector<string16>& icons, 115 const std::vector<string16>& icons,
115 const std::vector<int>& identifiers, 116 const std::vector<int>& identifiers,
116 base::WeakPtr<autofill::AutofillPopupDelegate> delegate) { 117 base::WeakPtr<autofill::AutofillPopupDelegate> delegate) {
117 } 118 }
118 119
119 void AwAutofillManagerDelegate::HideAutofillPopup() { 120 void AwAutofillManagerDelegate::HideAutofillPopup() {
120 } 121 }
121 122
122 void AwAutofillManagerDelegate::UpdateProgressBar(double value) { 123 void AwAutofillManagerDelegate::UpdateProgressBar(double value) {
123 } 124 }
124 125
125 } // namespace android_webview 126 } // namespace android_webview
OLDNEW
« no previous file with comments | « android_webview/browser/aw_autofill_manager_delegate.h ('k') | base/i18n/rtl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698