Index: cc/cc_paths.h |
diff --git a/cc/cc_paths.h b/cc/cc_paths.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2b5fd607cbd7009e5f80631bdb539c79ad7b19e5 |
--- /dev/null |
+++ b/cc/cc_paths.h |
@@ -0,0 +1,26 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CC_CC_PATHS_H_ |
+#define CC_CC_PATHS_H_ |
+ |
+#include "cc/cc_export.h" |
+ |
+namespace cc { |
+ |
+enum { |
+ PATH_START = 4000, |
danakj
2012/12/03 19:14:10
magic 4000.. comment?
|
+ |
+ // Valid only in development environment. |
danakj
2012/12/03 19:14:10
this sounds like copy pasta, and i'm not sure it i
|
+ DIR_TEST_DATA, // Directory where unit test data resides. |
danakj
2012/12/03 19:14:10
what's up with the weird comment whitespace?
|
+ |
+ PATH_END |
+}; |
+ |
+// Call once to register the provider for the path keys defined above. |
+CC_EXPORT void RegisterPathProvider(); |
+ |
+} // namespace cc |
+ |
+#endif // CC_CC_PATHS_H_ |