Avi Drissman | 3e1a26c | 2022-09-15 20:26:03 | [diff] [blame^] | 1 | // Copyright 2012 The Chromium Authors |
[email protected] | 42ce29d | 2011-01-20 23:19:46 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #ifndef UI_BASE_UI_BASE_PATHS_H_ | ||||
6 | #define UI_BASE_UI_BASE_PATHS_H_ | ||||
[email protected] | 42ce29d | 2011-01-20 23:19:46 | [diff] [blame] | 7 | |
Henrique Ferreiro | 376c765 | 2020-05-22 09:00:04 | [diff] [blame] | 8 | #include "base/component_export.h" |
[email protected] | f152b67b | 2012-08-03 12:43:29 | [diff] [blame] | 9 | #include "build/build_config.h" |
[email protected] | ea47b6a | 2011-07-17 19:39:42 | [diff] [blame] | 10 | |
[email protected] | 9911b5e | 2014-05-15 18:33:05 | [diff] [blame] | 11 | // This file declares path keys for various special directories. These can be |
12 | // used with the PathService to access these directories and files. | ||||
[email protected] | 42ce29d | 2011-01-20 23:19:46 | [diff] [blame] | 13 | |
14 | namespace ui { | ||||
15 | |||||
16 | enum { | ||||
17 | PATH_START = 3000, | ||||
18 | |||||
Xiaohan Wang | 8407409 | 2022-01-20 21:25:54 | [diff] [blame] | 19 | DIR_LOCALES, // Directory where locale resources are stored. |
[email protected] | 42ce29d | 2011-01-20 23:19:46 | [diff] [blame] | 20 | |
[email protected] | f152b67b | 2012-08-03 12:43:29 | [diff] [blame] | 21 | // Valid only in development environment; TODO(darin): move this |
Xiaohan Wang | 8407409 | 2022-01-20 21:25:54 | [diff] [blame] | 22 | UI_DIR_TEST_DATA, // Directory where unit test data resides. |
[email protected] | 42ce29d | 2011-01-20 23:19:46 | [diff] [blame] | 23 | |
Xiaohan Wang | 8407409 | 2022-01-20 21:25:54 | [ |