1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the
5 #ifndef APP_APP_PATHS_H_
6 #define APP_APP_PATHS_H_
8 // This file declares path keys for the app module. These can be used with
9 // the PathService to access various special directories and files.
16 DIR_THEMES
, // Directory where theme dll files are stored.
17 DIR_LOCALES
, // Directory where locale resources are stored.
18 DIR_EXTERNAL_EXTENSIONS
, // Directory where installer places .crx files.
20 FILE_RESOURCES_PAK
, // Path to the data .pak file which holds binary
23 // Valid only in development environment; TODO(darin): move these
24 DIR_TEST_DATA
, // Directory where unit test data resides.
29 // Call once to register the provider for the path keys defined above.
30 void RegisterPathProvider();
34 #endif // APP_APP_PATHS_H_