OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 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_BASE_FEATURES_H_ | |
6 #define CC_BASE_FEATURES_H_ | |
7 | |
8 #include "base/feature_list.h" | |
9 #include "cc/base/base_export.h" | |
10 | |
11 namespace cc { | |
12 namespace features { | |
13 | |
14 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
| |
15 | |
16 } // namespace features | |
17 } // namespace cc | |
18 | |
19 #endif // CC_BASE_FEATURES_H_ | |
OLD | NEW |