OLD | NEW |
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 #import "ios/chrome/browser/ui/autofill/autofill_client_ios.h" | 5 #import "ios/chrome/browser/ui/autofill/autofill_client_ios.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
9 #include "components/autofill/core/browser/autofill_cc_infobar_delegate.h" | 9 #include "components/autofill/core/browser/autofill_cc_infobar_delegate.h" |
10 #include "components/autofill/core/browser/ui/card_unmask_prompt_view.h" | 10 #include "components/autofill/core/browser/ui/card_unmask_prompt_view.h" |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 // the form_origin. See crbug.com/505388. | 158 // the form_origin. See crbug.com/505388. |
159 return form_origin.SchemeIsCryptographic(); | 159 return form_origin.SchemeIsCryptographic(); |
160 } | 160 } |
161 | 161 |
162 void AutofillClientIOS::OnFirstUserGestureObserved() { | 162 void AutofillClientIOS::OnFirstUserGestureObserved() { |
163 // TODO(gcasto): [Merge 306796] http://crbug.com/439425 Verify if this method | 163 // TODO(gcasto): [Merge 306796] http://crbug.com/439425 Verify if this method |
164 // needs a real implementation or not. | 164 // needs a real implementation or not. |
165 NOTIMPLEMENTED(); | 165 NOTIMPLEMENTED(); |
166 } | 166 } |
167 | 167 |
168 void AutofillClientIOS::LinkClicked(const GURL& url, | |
169 WindowOpenDisposition disposition) { | |
170 NOTIMPLEMENTED(); | |
171 } | |
172 | |
173 } // namespace autofill | 168 } // namespace autofill |
OLD | NEW |