Chromium Code Reviews| Index: sync/android/java/src/org/chromium/sync/SyncConstants.java |
| diff --git a/sync/android/java/src/org/chromium/sync/SyncConstants.java b/sync/android/java/src/org/chromium/sync/SyncConstants.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9f9b821d5fd11fd339adfa0e17f040ffb9a270a9 |
| --- /dev/null |
| +++ b/sync/android/java/src/org/chromium/sync/SyncConstants.java |
| @@ -0,0 +1,15 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +package org.chromium.sync; |
| + |
| +/** This class stores constants that need to be in org.chromium.sync. */ |
| +public class SyncConstants { |
|
nyquist
2015/01/16 17:52:25
Nit: Add final
maxbogue
2015/01/16 23:38:27
Done.
|
| + |
| + // This should always have the same value as GaiaConstants::kChromeSyncOAuth2Scope. |
| + public static final String CHROME_SYNC_OAUTH2_SCOPE = |
| + "https://www.googleapis.com/auth/chromesync"; |
| + |
| + private SyncConstants() {} |
| +} |