Home | History | Annotate | Download | only in gaia
      1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 //
      5 // Constants used by IssueAuthToken and ClientLogin
      6 
      7 #ifndef CHROME_COMMON_NET_GAIA_GAIA_CONSTANTS_H_
      8 #define CHROME_COMMON_NET_GAIA_GAIA_CONSTANTS_H_
      9 
     10 namespace GaiaConstants {
     11 
     12 // Gaia sources for accounting
     13 extern const char kChromeOSSource[];
     14 extern const char kChromeSource[];
     15 
     16 // Gaia services for requesting
     17 extern const char kGaiaService[];  // uber token
     18 extern const char kContactsService[];
     19 extern const char kTalkService[];
     20 extern const char kSyncService[];
     21 extern const char kRemotingService[];
     22 extern const char kCloudPrintService[];
     23 extern const char kDeviceManagementService[];
     24 
     25 }  // namespace GaiaConstants
     26 
     27 #endif  // CHROME_COMMON_NET_GAIA_GAIA_CONSTANTS_H_
     28