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

Side by Side Diff: cc/tile_manager.h

Issue 12472028: Part 1 of cc/ directory shuffles: base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
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_TILE_MANAGER_H_ 5 #ifndef CC_TILE_MANAGER_H_
6 #define CC_TILE_MANAGER_H_ 6 #define CC_TILE_MANAGER_H_
7 7
8 #include <list> 8 #include <list>
9 #include <queue> 9 #include <queue>
10 #include <set> 10 #include <set>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/hash_tables.h" 13 #include "base/hash_tables.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/values.h" 15 #include "base/values.h"
16 #include "cc/base/worker_pool.h"
16 #include "cc/memory_history.h" 17 #include "cc/memory_history.h"
17 #include "cc/picture_pile_impl.h" 18 #include "cc/picture_pile_impl.h"
18 #include "cc/rendering_stats.h" 19 #include "cc/rendering_stats.h"
19 #include "cc/resource_pool.h" 20 #include "cc/resource_pool.h"
20 #include "cc/tile_priority.h" 21 #include "cc/tile_priority.h"
21 #include "cc/worker_pool.h"
22 22
23 namespace cc { 23 namespace cc {
24 class RasterWorkerPool; 24 class RasterWorkerPool;
25 class ResourceProvider; 25 class ResourceProvider;
26 class Tile; 26 class Tile;
27 class TileVersion; 27 class TileVersion;
28 28
29 class CC_EXPORT TileManagerClient { 29 class CC_EXPORT TileManagerClient {
30 public: 30 public:
31 virtual void ScheduleManageTiles() = 0; 31 virtual void ScheduleManageTiles() = 0;
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 222
223 size_t pending_tasks_; 223 size_t pending_tasks_;
224 size_t max_pending_tasks_; 224 size_t max_pending_tasks_;
225 225
226 DISALLOW_COPY_AND_ASSIGN(TileManager); 226 DISALLOW_COPY_AND_ASSIGN(TileManager);
227 }; 227 };
228 228
229 } // namespace cc 229 } // namespace cc
230 230
231 #endif // CC_TILE_MANAGER_H_ 231 #endif // CC_TILE_MANAGER_H_
OLDNEW
« cc/cc.gyp ('K') | « cc/tile_draw_quad.h ('k') | cc/tile_priority.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698