summaryrefslogtreecommitdiffstats
path: root/webkit/compositor_bindings/web_rendering_stats_impl.h
blob: 1642c22d351001165fe19d6e5939e2c292ea6a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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_