extension_paths.h 708 B

123456789101112131415161718192021222324252627
  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.
  4. #ifndef EXTENSIONS_COMMON_EXTENSION_PATHS_H_
  5. #define EXTENSIONS_COMMON_EXTENSION_PATHS_H_
  6. // This file declares path keys for extensions. These can be used with
  7. // the PathService to access various special directories and files.
  8. namespace extensions {
  9. enum {
  10. PATH_START = 6000,
  11. // Valid only in development environment
  12. DIR_TEST_DATA,
  13. PATH_END
  14. };
  15. // Call once to register the provider for the path keys defined above.
  16. void RegisterPathProvider();
  17. } // namespace extensions
  18. #endif // EXTENSIONS_COMMON_EXTENSION_PATHS_H_