summaryrefslogtreecommitdiff
path: root/chromium/components/gcm_driver/gcm_driver_constants.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/gcm_driver/gcm_driver_constants.h')
-rw-r--r--chromium/components/gcm_driver/gcm_driver_constants.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/chromium/components/gcm_driver/gcm_driver_constants.h b/chromium/components/gcm_driver/gcm_driver_constants.h
new file mode 100644
index 00000000000..3501ead17a6
--- /dev/null
+++ b/chromium/components/gcm_driver/gcm_driver_constants.h
@@ -0,0 +1,20 @@
+// 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.
+
+// A handful of resource-like constants related to the GCM(Google Cloud
+// Messaging) Driver.
+
+#ifndef COMPONENTS_GCM_DRIVER_GCM_DRIVER_CONSTANTS_H_
+#define COMPONENTS_GCM_DRIVER_GCM_DRIVER_CONSTANTS_H_
+
+#include "base/files/file_path.h"
+
+namespace gcm_driver {
+
+// File path for GCM Store.
+extern const base::FilePath::CharType kGCMStoreDirname[];
+
+} // namespace gcm_driver
+
+#endif // COMPONENTS_GCM_DRIVER_GCM_DRIVER_CONSTANTS_H_