blob: 0bf6ed25de5db50421e64ab4ee8f9f7742cb23a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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_
#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_
|