PageLanguageDetectionTest has the failure rate of 5 - 6% on XP/Vista. Mark it
[chromium-blink-merge.git] / app / app_paths.h
blob250e6bffb8a3971e47cac79222a4eeb87e5ae4f4
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
3 // LICENSE file.
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.
11 namespace app {
13 enum {
14 PATH_START = 2000,
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
21 // resources.
23 // Valid only in development environment; TODO(darin): move these
24 DIR_TEST_DATA, // Directory where unit test data resides.
26 PATH_END
29 // Call once to register the provider for the path keys defined above.
30 void RegisterPathProvider();
32 } // namespace app
34 #endif // APP_APP_PATHS_H_