Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Unified Diff: cc/cc_paths.h

Issue 11412289: Basic pixel tests for cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moves png comparison code to cc/test, does actual comparison Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698