OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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 WEBKIT_COMMON_GPU_MANAGED_MEMORY_POLICY_CONVERT_H_ |
| 6 #define WEBKIT_COMMON_GPU_MANAGED_MEMORY_POLICY_CONVERT_H_ |
| 7 |
| 8 #include "cc/output/managed_memory_policy.h" |
| 9 #include "third_party/WebKit/public/platform/WebGraphicsMemoryAllocation.h" |
| 10 #include "webkit/common/gpu/webkit_gpu_export.h" |
| 11 |
| 12 namespace webkit { |
| 13 namespace gpu { |
| 14 |
| 15 class WEBKIT_GPU_EXPORT ManagedMemoryPolicyConvert { |
| 16 public: |
| 17 static cc::ManagedMemoryPolicy Convert( |
| 18 const WebKit::WebGraphicsMemoryAllocation& allocation, |
| 19 bool* discard_backbuffer_when_not_visible); |
| 20 }; |
| 21 |
| 22 } // namespace gpu |
| 23 } // namespace webkit |
| 24 |
| 25 #endif // WEBKIT_COMMON_GPU_MANAGED_MEMORY_POLICY_CONVERT_H_ |
OLD | NEW |