1<!DOCTYPE html> 2<!-- 3Copyright (c) 2013 The Chromium Authors. All rights reserved. 4Use of this source code is governed by a BSD-style license that can be 5found in the LICENSE file. 6--> 7<link rel="import" href="/tracing/base/base.html"> 8<script> 9 10'use strict'; 11 12tr.exportTo('tr.e.cc', function() { 13 /** 14 * This class represents a tile (from impl side) and its final rect on the 15 * layer. Note that the rect is determined by what is needed to cover all 16 * of the layer without overlap. 17 * @constructor 18 */ 19 function TileCoverageRect(rect, tile) { 20 this.geometryRect = rect; 21 this.tile = tile; 22 } 23 24 return { 25 TileCoverageRect: TileCoverageRect 26 }; 27}); 28</script> 29