| Index: webkit/glue/compositor_rendering_stats.h
|
| diff --git a/webkit/glue/compositor_rendering_stats.h b/webkit/glue/compositor_rendering_stats.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fc5118033c74182b6b336d379398bddb9170cd4b
|
| --- /dev/null
|
| +++ b/webkit/glue/compositor_rendering_stats.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 WEBKIT_GLUE_COMPOSITOR_RENDERING_STATS_H_
|
| +#define WEBKIT_GLUE_COMPOSITOR_RENDERING_STATS_H_
|
| +
|
| +#include "cc/rendering_stats.h"
|
| +#include "third_party/WebKit/Source/Platform/chromium/public/WebRenderingStats.h"
|
| +#include "webkit/glue/webkit_glue_export.h"
|
| +
|
| +namespace webkit_glue {
|
| +
|
| +struct WEBKIT_GLUE_EXPORT CompositorRenderingStats
|
| + : public WebKit::WebRenderingStats {
|
| + cc::CCRenderingStats cc_stats;
|
| +};
|
| +
|
| +}
|
| +
|
| +#endif // WEBKIT_GLUE_COMPOSITOR_RENDERING_STATS_H_
|
|
|