Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / extensions / common / extension_paths.h
blobbbeff6acefd9d7ff09997b921de0d0b836338243
1 // Copyright (c) 2013 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.
5 #ifndef EXTENSIONS_COMMON_EXTENSION_PATHS_H_
6 #define EXTENSIONS_COMMON_EXTENSION_PATHS_H_
8 // This file declares path keys for extensions. These can be used with
9 // the PathService to access various special directories and files.
11 namespace extensions {
13 enum {
14 PATH_START = 6000,
16 // Valid only in development environment
17 DIR_TEST_DATA,
19 PATH_END
22 // Call once to register the provider for the path keys defined above.
23 void RegisterPathProvider();
25 } // namespace extensions
27 #endif // EXTENSIONS_COMMON_EXTENSION_PATHS_H_