1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_LAYERS_PAINT_PROPERTIES_H_
6 #define CC_LAYERS_PAINT_PROPERTIES_H_
8 #include "ui/gfx/geometry/size.h"
12 // Container for properties that layers need to save before they can be paint.
13 struct CC_EXPORT PaintProperties
{
14 PaintProperties() : source_frame_number(-1) {}
18 int source_frame_number
;
23 #endif // CC_LAYERS_PAINT_PROPERTIES_H_