OLD | NEW |
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_TILE_PRIORITY_H_ | 5 #ifndef CC_RESOURCES_TILE_PRIORITY_H_ |
6 #define CC_TILE_PRIORITY_H_ | 6 #define CC_RESOURCES_TILE_PRIORITY_H_ |
7 | 7 |
8 #include <limits> | 8 #include <limits> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "cc/picture_pile.h" | 12 #include "cc/resources/picture_pile.h" |
13 #include "ui/gfx/quad_f.h" | 13 #include "ui/gfx/quad_f.h" |
14 #include "ui/gfx/rect.h" | 14 #include "ui/gfx/rect.h" |
15 #include "ui/gfx/size.h" | 15 #include "ui/gfx/size.h" |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 class Value; | 18 class Value; |
19 } | 19 } |
20 | 20 |
21 namespace cc { | 21 namespace cc { |
22 | 22 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 | 170 |
171 size_t memory_limit_in_bytes; | 171 size_t memory_limit_in_bytes; |
172 | 172 |
173 TreePriority tree_priority; | 173 TreePriority tree_priority; |
174 | 174 |
175 scoped_ptr<base::Value> AsValue() const; | 175 scoped_ptr<base::Value> AsValue() const; |
176 }; | 176 }; |
177 | 177 |
178 } // namespace cc | 178 } // namespace cc |
179 | 179 |
180 #endif // CC_TILE_PRIORITY_H_ | 180 #endif // CC_RESOURCES_TILE_PRIORITY_H_ |
OLD | NEW |