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

Side by Side Diff: components/sync/android/java/src/org/chromium/components/sync/SyncConstants.java

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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 unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698