Index: cc/output/renderer_capabilities_impl.cc |
diff --git a/cc/output/renderer_capabilities_impl.cc b/cc/output/renderer_capabilities_impl.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2f5e63de3eca8d5217d6a68f9b7f6321e6f4fe9e |
--- /dev/null |
+++ b/cc/output/renderer_capabilities_impl.cc |
@@ -0,0 +1,18 @@ |
+// Copyright 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. |
+ |
+#include "cc/output/renderer_capabilities_impl.h" |
+ |
+namespace cc { |
+ |
+RendererCapabilitiesImpl::RendererCapabilitiesImpl() = default; |
+RendererCapabilitiesImpl::~RendererCapabilitiesImpl() = default; |
+ |
+RendererCapabilities RendererCapabilitiesImpl::MainThreadCapabilities() const { |
+ return RendererCapabilities(best_texture_format, |
+ allow_partial_texture_updates, max_texture_size, |
+ using_shared_memory_resources); |
+} |
+ |
+} // namespace cc |