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

Side by Side Diff: ios/chrome/browser/ui/autofill/autofill_client_ios.mm

Issue 1361253002: Separate the URL of an infobar link with clicking on it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pkasting Created 5 years, 2 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 | « ios/chrome/browser/ui/autofill/autofill_client_ios.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/autofill/autofill_client_ios.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698