blob: 9b936980c4f8fc489496cb55d281141c2194ce13 (
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 CC_LAYERS_PAINT_PROPERTIES_H_
#define CC_LAYERS_PAINT_PROPERTIES_H_
#include "ui/gfx/size.h"
namespace cc {
// Container for properties that layers need to save before they can be paint.
struct CC_EXPORT PaintProperties {
PaintProperties() {}
gfx::Size bounds;
};
} // namespace cc
#endif // CC_LAYERS_PAINT_PROPERTIES_H_
|