| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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; | 5 package org.chromium.components.sync; |
| 6 | 6 |
| 7 /** This class stores constants that need to be in org.chromium.sync. */ | 7 /** This class stores constants that need to be in org.chromium.components.sync.
*/ |
| 8 public final class SyncConstants { | 8 public final class SyncConstants { |
| 9 | |
| 10 // This should always have the same value as GaiaConstants::kChromeSyncOAuth
2Scope. | 9 // This should always have the same value as GaiaConstants::kChromeSyncOAuth
2Scope. |
| 11 public static final String CHROME_SYNC_OAUTH2_SCOPE = | 10 public static final String CHROME_SYNC_OAUTH2_SCOPE = |
| 12 "https://www.googleapis.com/auth/chromesync"; | 11 "https://www.googleapis.com/auth/chromesync"; |
| 13 | 12 |
| 14 private SyncConstants() {} | 13 private SyncConstants() {} |
| 15 } | 14 } |
| OLD | NEW |