Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Side by Side Diff: extensions/common/constants.h

Issue 23007021: Report Javascript Runtime Errors to the Error Console (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dc_ec_feldman
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/common/DEPS ('k') | extensions/common/extension_urls.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef EXTENSIONS_COMMON_CONSTANTS_H_ 5 #ifndef EXTENSIONS_COMMON_CONSTANTS_H_
6 #define EXTENSIONS_COMMON_CONSTANTS_H_ 6 #define EXTENSIONS_COMMON_CONSTANTS_H_
7 7
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 9
10 namespace extensions { 10 namespace extensions {
11 11
12 // Scheme we serve extension content from. 12 // Scheme we serve extension content from.
13 extern const char kExtensionScheme[]; 13 extern const char kExtensionScheme[];
14 14
15 // The name of the manifest inside an extension. 15 // The name of the manifest inside an extension.
16 extern const base::FilePath::CharType kManifestFilename[]; 16 extern const base::FilePath::CharType kManifestFilename[];
17 17
18 // The name of locale folder inside an extension. 18 // The name of locale folder inside an extension.
19 extern const base::FilePath::CharType kLocaleFolder[]; 19 extern const base::FilePath::CharType kLocaleFolder[];
20 20
21 // The name of the messages file inside an extension. 21 // The name of the messages file inside an extension.
22 extern const base::FilePath::CharType kMessagesFilename[]; 22 extern const base::FilePath::CharType kMessagesFilename[];
23 23
24 // The base directory for subdirectories with platform-specific code. 24 // The base directory for subdirectories with platform-specific code.
25 extern const base::FilePath::CharType kPlatformSpecificFolder[]; 25 extern const base::FilePath::CharType kPlatformSpecificFolder[];
26 26
27 // The name of the directory inside the profile where extensions are 27 // The name of the directory inside the profile where extensions are
28 // installed to. 28 // installed to.
29 extern const char kInstallDirectoryName[]; 29 extern const char kInstallDirectoryName[];
30 30
31 // The name of a temporary directory to install an extension into for 31 // The name of a temporary directory to install an extension into for
(...skipping 16 matching lines...) Expand all
48 48
49 // The file extension (.crx) for extensions. 49 // The file extension (.crx) for extensions.
50 extern const base::FilePath::CharType kExtensionFileExtension[]; 50 extern const base::FilePath::CharType kExtensionFileExtension[];
51 51
52 // The file extension (.pem) for private key files. 52 // The file extension (.pem) for private key files.
53 extern const base::FilePath::CharType kExtensionKeyFileExtension[]; 53 extern const base::FilePath::CharType kExtensionKeyFileExtension[];
54 54
55 } // namespace extensions 55 } // namespace extensions
56 56
57 #endif // EXTENSIONS_COMMON_CONSTANTS_H_ 57 #endif // EXTENSIONS_COMMON_CONSTANTS_H_
OLDNEW
« no previous file with comments | « extensions/common/DEPS ('k') | extensions/common/extension_urls.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698