Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: cc/layers/paint_properties.h

Issue 660333004: cc cleanup: Update paths to geometry headers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/layers/nine_patch_layer_impl_unittest.cc ('k') | cc/layers/painted_scrollbar_layer_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_LAYERS_PAINT_PROPERTIES_H_ 5 #ifndef CC_LAYERS_PAINT_PROPERTIES_H_
6 #define CC_LAYERS_PAINT_PROPERTIES_H_ 6 #define CC_LAYERS_PAINT_PROPERTIES_H_
7 7
8 #include "ui/gfx/size.h" 8 #include "ui/gfx/geometry/size.h"
9 9
10 namespace cc { 10 namespace cc {
11 11
12 // Container for properties that layers need to save before they can be paint. 12 // Container for properties that layers need to save before they can be paint.
13 struct CC_EXPORT PaintProperties { 13 struct CC_EXPORT PaintProperties {
14 PaintProperties() : source_frame_number(-1) {} 14 PaintProperties() : source_frame_number(-1) {}
15 15
16 gfx::Size bounds; 16 gfx::Size bounds;
17 17
18 int source_frame_number; 18 int source_frame_number;
19 }; 19 };
20 20
21 } // namespace cc 21 } // namespace cc
22 22
23 #endif // CC_LAYERS_PAINT_PROPERTIES_H_ 23 #endif // CC_LAYERS_PAINT_PROPERTIES_H_
OLDNEW
« no previous file with comments | « cc/layers/nine_patch_layer_impl_unittest.cc ('k') | cc/layers/painted_scrollbar_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698