OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 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 CC_CC_PATHS_H_ | |
6 #define CC_CC_PATHS_H_ | |
7 | |
8 #include "cc/cc_export.h" | |
9 | |
10 namespace cc { | |
11 | |
12 enum { | |
13 PATH_START = 4000, | |
danakj
2012/12/03 19:14:10
magic 4000.. comment?
| |
14 | |
15 // Valid only in development environment. | |
danakj
2012/12/03 19:14:10
this sounds like copy pasta, and i'm not sure it i
| |
16 DIR_TEST_DATA, // Directory where unit test data resides. | |
danakj
2012/12/03 19:14:10
what's up with the weird comment whitespace?
| |
17 | |
18 PATH_END | |
19 }; | |
20 | |
21 // Call once to register the provider for the path keys defined above. | |
22 CC_EXPORT void RegisterPathProvider(); | |
23 | |
24 } // namespace cc | |
25 | |
26 #endif // CC_CC_PATHS_H_ | |
OLD | NEW |