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

Side by Side Diff: components/autofill/core/browser/android/java/src/org/chromium/components/browser/autofill/PersonalAutofillPopulator.java

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix android build 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 | 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 // Populates data fields from Android contacts profile API (i.e. "me" contact). 5 // Populates data fields from Android contacts profile API (i.e. "me" contact).
6 6
7 package org.chromium.components.browser.autofill; 7 package org.chromium.components.browser.autofill;
8 8
9 import android.app.Activity; 9 import android.app.Activity;
10 import android.content.ContentProviderOperation; 10 import android.content.ContentProviderOperation;
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 @CalledByNative 310 @CalledByNative
311 private String[] getPhoneNumbers() { 311 private String[] getPhoneNumbers() {
312 return mPhoneNumbers; 312 return mPhoneNumbers;
313 } 313 }
314 314
315 @CalledByNative 315 @CalledByNative
316 private boolean getHasPermissions() { 316 private boolean getHasPermissions() {
317 return mHasPermissions; 317 return mHasPermissions;
318 } 318 }
319 } 319 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698