OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #ifndef APP_APP_PATHS_ |
| 6 #define APP_APP_PATHS_ |
| 7 |
| 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. |
| 10 |
| 11 namespace app { |
| 12 |
| 13 enum { |
| 14 PATH_START = 2000, |
| 15 |
| 16 DIR_THEMES, // directory where theme dll files are stored |
| 17 DIR_LOCALES, // directory where locale resources are stored |
| 18 |
| 19 // Valid only in development environment; TODO(darin): move these |
| 20 DIR_TEST_DATA, // directory where unit test data resides |
| 21 |
| 22 PATH_END |
| 23 }; |
| 24 |
| 25 // Call once to register the provider for the path keys defined above. |
| 26 void RegisterPathProvider(); |
| 27 |
| 28 } // namespace app |
| 29 |
| 30 #endif // #ifndef APP_APP_PATHS_ |
OLD | NEW |