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..7d6c84b60184313482f64e08ef7461a5923994eb |
--- /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 final class SyncConstants { |
+ |
+ // 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() {} |
+} |