| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |