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

Side by Side Diff: ui/base/android/java/src/org/chromium/ui/autofill/AutofillPopup.java

Issue 62203014: Move WindowOpenDisposition.template to ui/base/android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ui.gyp Created 7 years, 1 month 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 | Annotate | Revision Log
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 package org.chromium.ui.autofill; 5 package org.chromium.ui.autofill;
6 6
7 import android.content.Context; 7 import android.content.Context;
8 import android.graphics.Paint; 8 import android.graphics.Paint;
9 import android.graphics.Rect; 9 import android.graphics.Rect;
10 import android.text.TextUtils; 10 import android.text.TextUtils;
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 // Adding padding. 205 // Adding padding.
206 return maxTextWidth + TEXT_PADDING_DP; 206 return maxTextWidth + TEXT_PADDING_DP;
207 } 207 }
208 208
209 @Override 209 @Override
210 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { 210 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
211 mAutofillCallback.suggestionSelected(position); 211 mAutofillCallback.suggestionSelected(position);
212 } 212 }
213 213
214 } 214 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698