blob: aeb9e674acbd69840180aaaad1562e8ba7bb9dc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright (c) 2012 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.
#ifndef EXTENSIONS_COMMON_CONSTANTS_H_
#define EXTENSIONS_COMMON_CONSTANTS_H_
#include "base/files/file_path.h"
namespace extensions {
// Scheme we serve extension content from.
extern const char kExtensionScheme[];
// The name of the manifest inside an extension.
extern const base::FilePath::CharType kManifestFilename[];
// The name of locale folder inside an extension.
extern const base::FilePath::CharType kLocaleFolder[];
// The name of the messages file inside an extension.
extern const base::FilePath::CharType kMessagesFilename[];
// The base directory for subdirectories with platform-specific code.
extern const base::FilePath::CharType kPlatformSpecificFolder[];
// The name of the directory inside the profile where extensions are
// installed to.
extern const char kInstallDirectoryName[];
} // namespace extensions
#endif // EXTENSIONS_COMMON_CONSTANTS_H_
|