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

Unified Diff: sync/android/java/src/org/chromium/sync/SyncConstants.java

Issue 845543005: Rename SyncStatusHelper to AndroidSyncSettings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gsm
Patch Set: Fix DEPS. Created 5 years, 11 months 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 side-by-side diff with in-line comments
Download patch
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() {}
+}

Powered by Google App Engine
This is Rietveld 408576698