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

Side by Side Diff: sync/android/java/src/org/chromium/sync/notifier/SystemSyncContentResolverDelegate.java

Issue 111933005: Fix Java style issues in sync/android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright 2010 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.sync.notifier; 5 package org.chromium.sync.notifier;
6 6
7 7
8 import android.accounts.Account; 8 import android.accounts.Account;
9 import android.content.ContentResolver; 9 import android.content.ContentResolver;
10 import android.content.SyncStatusObserver; 10 import android.content.SyncStatusObserver;
11 11
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 @Override 44 @Override
45 public void setIsSyncable(Account account, String authority, int syncable) { 45 public void setIsSyncable(Account account, String authority, int syncable) {
46 ContentResolver.setIsSyncable(account, authority, syncable); 46 ContentResolver.setIsSyncable(account, authority, syncable);
47 } 47 }
48 48
49 @Override 49 @Override
50 public int getIsSyncable(Account account, String authority) { 50 public int getIsSyncable(Account account, String authority) {
51 return ContentResolver.getIsSyncable(account, authority); 51 return ContentResolver.getIsSyncable(account, authority);
52 } 52 }
53 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698