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

Unified Diff: cc/resources/tile.cc

Issue 810713002: Reduce tile memory size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/resources/tile.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/tile.cc
diff --git a/cc/resources/tile.cc b/cc/resources/tile.cc
index 63146dec6fdd63cec156646e5ad453568208af7a..86d76159c96123b4017e31f93778fe446d58d2cc 100644
--- a/cc/resources/tile.cc
+++ b/cc/resources/tile.cc
@@ -25,16 +25,15 @@ Tile::Tile(TileManager* tile_manager,
int source_frame_number,
int flags)
: RefCountedManaged<Tile>(tile_manager),
- tile_manager_(tile_manager),
size_(tile_size),
content_rect_(content_rect),
contents_scale_(contents_scale),
layer_id_(layer_id),
source_frame_number_(source_frame_number),
flags_(flags),
- is_shared_(false),
tiling_i_index_(-1),
tiling_j_index_(-1),
+ is_shared_(false),
required_for_activation_(false),
required_for_draw_(false),
id_(s_next_id_++),
« no previous file with comments | « cc/resources/tile.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698