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