| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |