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

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

Issue 324483003: cc: Removed LCD text settings from the impl side. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updated unittest Created 6 years, 6 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_RESOURCES_TILE_MANAGER_H_ 5 #ifndef CC_RESOURCES_TILE_MANAGER_H_
6 #define CC_RESOURCES_TILE_MANAGER_H_ 6 #define CC_RESOURCES_TILE_MANAGER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <queue> 9 #include <queue>
10 #include <set> 10 #include <set>
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 const MemoryHistory::Entry& memory_stats_from_last_assign() const { 195 const MemoryHistory::Entry& memory_stats_from_last_assign() const {
196 return memory_stats_from_last_assign_; 196 return memory_stats_from_last_assign_;
197 } 197 }
198 198
199 void GetPairedPictureLayers(std::vector<PairedPictureLayer>* layers) const; 199 void GetPairedPictureLayers(std::vector<PairedPictureLayer>* layers) const;
200 200
201 void InitializeTilesWithResourcesForTesting(const std::vector<Tile*>& tiles) { 201 void InitializeTilesWithResourcesForTesting(const std::vector<Tile*>& tiles) {
202 for (size_t i = 0; i < tiles.size(); ++i) { 202 for (size_t i = 0; i < tiles.size(); ++i) {
203 ManagedTileState& mts = tiles[i]->managed_state(); 203 ManagedTileState& mts = tiles[i]->managed_state();
204 ManagedTileState::TileVersion& tile_version = 204 ManagedTileState::TileVersion& tile_version =
205 mts.tile_versions[HIGH_QUALITY_NO_LCD_RASTER_MODE]; 205 mts.tile_versions[HIGH_QUALITY_RASTER_MODE];
206 206
207 tile_version.resource_ = resource_pool_->AcquireResource(gfx::Size(1, 1)); 207 tile_version.resource_ = resource_pool_->AcquireResource(gfx::Size(1, 1));
208 208
209 bytes_releasable_ += BytesConsumedIfAllocated(tiles[i]); 209 bytes_releasable_ += BytesConsumedIfAllocated(tiles[i]);
210 ++resources_releasable_; 210 ++resources_releasable_;
211 } 211 }
212 } 212 }
213 213
214 void ReleaseTileResourcesForTesting(const std::vector<Tile*>& tiles) { 214 void ReleaseTileResourcesForTesting(const std::vector<Tile*>& tiles) {
215 for (size_t i = 0; i < tiles.size(); ++i) { 215 for (size_t i = 0; i < tiles.size(); ++i) {
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 std::vector<PictureLayerImpl*> layers_; 346 std::vector<PictureLayerImpl*> layers_;
347 347
348 UniqueNotifier ready_to_activate_check_notifier_; 348 UniqueNotifier ready_to_activate_check_notifier_;
349 349
350 DISALLOW_COPY_AND_ASSIGN(TileManager); 350 DISALLOW_COPY_AND_ASSIGN(TileManager);
351 }; 351 };
352 352
353 } // namespace cc 353 } // namespace cc
354 354
355 #endif // CC_RESOURCES_TILE_MANAGER_H_ 355 #endif // CC_RESOURCES_TILE_MANAGER_H_
OLDNEW
« cc/resources/tile.h ('K') | « cc/resources/tile.cc ('k') | cc/resources/tile_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698