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

Side by Side Diff: cc/tiles/tile_manager.h

Issue 1144693002: cc: Move files out of cc/resources/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resources: android Created 5 years, 7 months 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/tiles/tile_draw_info.cc ('k') | cc/tiles/tile_manager.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_RESOURCES_TILE_MANAGER_H_ 5 #ifndef CC_TILES_TILE_MANAGER_H_
6 #define CC_RESOURCES_TILE_MANAGER_H_ 6 #define CC_TILES_TILE_MANAGER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <queue> 9 #include <queue>
10 #include <set> 10 #include <set>
11 #include <utility> 11 #include <utility>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/containers/hash_tables.h" 14 #include "base/containers/hash_tables.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/values.h" 16 #include "base/values.h"
17 #include "cc/base/unique_notifier.h" 17 #include "cc/base/unique_notifier.h"
18 #include "cc/resources/eviction_tile_priority_queue.h" 18 #include "cc/playback/raster_source.h"
19 #include "cc/raster/tile_task_runner.h"
19 #include "cc/resources/memory_history.h" 20 #include "cc/resources/memory_history.h"
20 #include "cc/resources/raster_source.h"
21 #include "cc/resources/raster_tile_priority_queue.h"
22 #include "cc/resources/resource_pool.h" 21 #include "cc/resources/resource_pool.h"
23 #include "cc/resources/tile.h" 22 #include "cc/tiles/eviction_tile_priority_queue.h"
24 #include "cc/resources/tile_draw_info.h" 23 #include "cc/tiles/raster_tile_priority_queue.h"
25 #include "cc/resources/tile_task_runner.h" 24 #include "cc/tiles/tile.h"
25 #include "cc/tiles/tile_draw_info.h"
26 26
27 namespace base { 27 namespace base {
28 namespace trace_event { 28 namespace trace_event {
29 class ConvertableToTraceFormat; 29 class ConvertableToTraceFormat;
30 class TracedValue; 30 class TracedValue;
31 } 31 }
32 } 32 }
33 33
34 namespace cc { 34 namespace cc {
35 class PictureLayerImpl; 35 class PictureLayerImpl;
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 UniqueNotifier more_tiles_need_prepare_check_notifier_; 305 UniqueNotifier more_tiles_need_prepare_check_notifier_;
306 306
307 bool did_notify_ready_to_activate_; 307 bool did_notify_ready_to_activate_;
308 bool did_notify_ready_to_draw_; 308 bool did_notify_ready_to_draw_;
309 309
310 DISALLOW_COPY_AND_ASSIGN(TileManager); 310 DISALLOW_COPY_AND_ASSIGN(TileManager);
311 }; 311 };
312 312
313 } // namespace cc 313 } // namespace cc
314 314
315 #endif // CC_RESOURCES_TILE_MANAGER_H_ 315 #endif // CC_TILES_TILE_MANAGER_H_
OLDNEW
« no previous file with comments | « cc/tiles/tile_draw_info.cc ('k') | cc/tiles/tile_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698