Index: cc/base/features.h |
diff --git a/cc/base/features.h b/cc/base/features.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4d55198aeedbfae012696fe4b4c54695d24babcb |
--- /dev/null |
+++ b/cc/base/features.h |
@@ -0,0 +1,19 @@ |
+// Copyright 2017 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_BASE_FEATURES_H_ |
+#define CC_BASE_FEATURES_H_ |
+ |
+#include "base/feature_list.h" |
+#include "cc/base/base_export.h" |
+ |
+namespace cc { |
+namespace features { |
+ |
+CC_BASE_EXPORT extern const base::Feature kEnableCheckerImaging; |
piman
2017/05/24 18:59:11
Is this something that belongs in CC - that is, is
Khushal
2017/05/24 20:45:07
Yeah, its only for the renderer compositor. And th
|
+ |
+} // namespace features |
+} // namespace cc |
+ |
+#endif // CC_BASE_FEATURES_H_ |