gcm_driver_constants.h 603 B

1234567891011121314151617181920
  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
  3. // found in the LICENSE file.
  4. // A handful of resource-like constants related to the GCM(Google Cloud
  5. // Messaging) Driver.
  6. #ifndef COMPONENTS_GCM_DRIVER_GCM_DRIVER_CONSTANTS_H_
  7. #define COMPONENTS_GCM_DRIVER_GCM_DRIVER_CONSTANTS_H_
  8. #include "base/files/file_path.h"
  9. namespace gcm_driver {
  10. // File path for GCM Store.
  11. extern const base::FilePath::CharType kGCMStoreDirname[];
  12. } // namespace gcm_driver
  13. #endif // COMPONENTS_GCM_DRIVER_GCM_DRIVER_CONSTANTS_H_