Index: webkit/compositor_bindings/web_rendering_stats_impl.h |
diff --git a/webkit/compositor_bindings/web_rendering_stats_impl.h b/webkit/compositor_bindings/web_rendering_stats_impl.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1642c22d351001165fe19d6e5939e2c292ea6a58 |
--- /dev/null |
+++ b/webkit/compositor_bindings/web_rendering_stats_impl.h |
@@ -0,0 +1,21 @@ |
+// 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. |
+ |
+#ifndef WEB_RENDERING_STATS_IMPL_H_ |
+#define WEB_RENDERING_STATS_IMPL_H_ |
+ |
+#include "cc/rendering_stats.h" |
+#include "third_party/WebKit/Source/Platform/chromium/public/WebRenderingStats.h" |
+ |
+namespace WebKit { |
+ |
+struct WebRenderingStatsImpl : public WebRenderingStats { |
+ WebRenderingStatsImpl() { } |
+ |
+ cc::RenderingStats rendering_stats; |
+}; |
+ |
+} // namespace WebKit |
+ |
+#endif // WEB_RENDERING_STATS_IMPL_H_ |