blob: 10c177c9587ac6a530b9ac1fb6104e8d3c6ec41c [file] [log] [blame]
// 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/rendering_stats.h"
namespace cc {
RenderingStats::RenderingStats()
: numAnimationFrames(0),
numFramesSentToScreen(0),
droppedFrameCount(0),
totalPaintTimeInSeconds(0),
totalRasterizeTimeInSeconds(0),
totalCommitTimeInSeconds(0),
totalCommitCount(0),
totalPixelsPainted(0),
totalPixelsRasterized(0),
numImplThreadScrolls(0),
numMainThreadScrolls(0),
numLayersInLayerTree(0) {
}
} // namespace cc