OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2012 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 | |
5 #ifndef BASE_PREFS_PREF_PATHS_H_ | |
6 #define BASE_PREFS_PREF_PATHS_H_ | |
7 | |
8 #include "base/prefs/base_prefs_export.h" | |
9 | |
10 namespace base { | |
11 namespace prefs { | |
12 | |
13 enum { | |
14 PATH_START = 5000, | |
15 | |
16 // Use only for unittests. | |
17 DIR_TEST_DATA, | |
Jói
2012/11/26 10:42:26
Have you seen any other paths that might get added
tfarina
2012/11/27 02:15:59
Done.
| |
18 | |
19 PATH_END | |
20 }; | |
21 | |
22 // Call once to register the provider for the path keys defined above. | |
23 BASE_PREFS_EXPORT void RegisterPathProvider(); | |
24 | |
25 } // namespace prefs | |
26 } // namespace base | |
27 | |
28 #endif // BASE_PREFS_PREF_PATHS_H_ | |
OLD | NEW |