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

Unified Diff: tools/cc-frame-viewer/src/model/tile.js

Issue 12287014: [cc-frame-viewer] Show layers and levels of detail (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/cc-frame-viewer/src/model/layer_tree_impl.js ('k') | tools/cc-frame-viewer/src/model_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/cc-frame-viewer/src/model/tile.js
diff --git a/tools/cc-frame-viewer/src/model/tile.js b/tools/cc-frame-viewer/src/model/tile.js
index 2b8ab179a5d1a40c7fdb7587012a1d1c21c44670..c50320c283e397322da77274c644e60d87470640 100644
--- a/tools/cc-frame-viewer/src/model/tile.js
+++ b/tools/cc-frame-viewer/src/model/tile.js
@@ -16,6 +16,7 @@ base.exportTo('ccfv.model', function() {
function TileHistory(id) {
this.id = id;
this.tilesBySnapshotNumber = {};
+ this.layerID = undefined;
this.picturePile = undefined;
this.contentsScale = undefined;
@@ -35,6 +36,7 @@ base.exportTo('ccfv.model', function() {
dumpToSimpleObject: function(obj) {
obj.id = this.id;
+ obj.layerID = this.layerID;
obj.picturePile = this.picturePile;
obj.contentsScale = this.contentsScale;
}
« no previous file with comments | « tools/cc-frame-viewer/src/model/layer_tree_impl.js ('k') | tools/cc-frame-viewer/src/model_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698