OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_GPU_COMPOSITOR_UTIL_H_ | 5 #ifndef CONTENT_BROWSER_GPU_COMPOSITOR_UTIL_H_ |
6 #define CONTENT_BROWSER_GPU_COMPOSITOR_UTIL_H_ | 6 #define CONTENT_BROWSER_GPU_COMPOSITOR_UTIL_H_ |
7 | 7 |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
10 | 10 |
11 namespace content { | 11 namespace content { |
12 | 12 |
| 13 // Note: When adding a function here, please make sure the logic is not |
| 14 // duplicated in the renderer. |
| 15 |
13 // Returns true if the threaded compositor is on (via flags or field trial). | 16 // Returns true if the threaded compositor is on (via flags or field trial). |
14 CONTENT_EXPORT bool IsThreadedCompositingEnabled(); | 17 CONTENT_EXPORT bool IsThreadedCompositingEnabled(); |
15 | 18 |
16 // Returns true if force-compositing-mode is on (via flags or field trial). | 19 // Returns true if force-compositing-mode is on (via flags or field trial). |
17 CONTENT_EXPORT bool IsForceCompositingModeEnabled(); | 20 CONTENT_EXPORT bool IsForceCompositingModeEnabled(); |
18 | 21 |
19 // Returns true if delegated-renderer is on (via flags, or platform default). | 22 // Returns true if delegated-renderer is on (via flags, or platform default). |
20 CONTENT_EXPORT bool IsDelegatedRendererEnabled(); | 23 CONTENT_EXPORT bool IsDelegatedRendererEnabled(); |
21 | 24 |
22 // Returns true if impl-side painting is on (via flags, or platform default) | 25 // Returns true if impl-side painting is on (via flags, or platform default) |
23 // for the renderer. | 26 // for the renderer. |
24 CONTENT_EXPORT bool IsImplSidePaintingEnabled(); | 27 CONTENT_EXPORT bool IsImplSidePaintingEnabled(); |
25 | 28 |
26 CONTENT_EXPORT base::Value* GetFeatureStatus(); | 29 CONTENT_EXPORT base::Value* GetFeatureStatus(); |
27 CONTENT_EXPORT base::Value* GetProblems(); | 30 CONTENT_EXPORT base::Value* GetProblems(); |
28 CONTENT_EXPORT base::Value* GetDriverBugWorkarounds(); | 31 CONTENT_EXPORT base::Value* GetDriverBugWorkarounds(); |
29 | 32 |
30 } // namespace content | 33 } // namespace content |
31 | 34 |
32 #endif // CONTENT_BROWSER_GPU_COMPOSITOR_UTIL_H_ | 35 #endif // CONTENT_BROWSER_GPU_COMPOSITOR_UTIL_H_ |
OLD | NEW |