summaryrefslogtreecommitdiffstats
path: root/cc/resources/layer_tiling_data.cc
diff options
context:
space:
mode:
authorenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-28 01:09:50 +0000
committerenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-28 01:09:50 +0000
commit27d851ab5e0d68e00392d05c712dd0c714c02b01 (patch)
tree22f9707af1a548e6bd2c07b720d0f6859e41c225 /cc/resources/layer_tiling_data.cc
parentfe4b209dee751f48da012b08fb6ca762d1eb4039 (diff)
downloadchromium_src-27d851ab5e0d68e00392d05c712dd0c714c02b01.zip
chromium_src-27d851ab5e0d68e00392d05c712dd0c714c02b01.tar.gz
chromium_src-27d851ab5e0d68e00392d05c712dd0c714c02b01.tar.bz2
cc: Replace FIXMEs with TODO(danakj)
R=danakj@chromium.org BUG=none Review URL: https://chromiumcodereview.appspot.com/18050012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209050 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/resources/layer_tiling_data.cc')
-rw-r--r--cc/resources/layer_tiling_data.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/resources/layer_tiling_data.cc b/cc/resources/layer_tiling_data.cc
index 0356985..6b33234 100644
--- a/cc/resources/layer_tiling_data.cc
+++ b/cc/resources/layer_tiling_data.cc
@@ -73,8 +73,8 @@ void LayerTilingData::ContentRectToTileIndices(gfx::Rect content_rect,
int* bottom) const {
// An empty rect doesn't result in an empty set of tiles, so don't pass an
// empty rect.
- // FIXME: Possibly we should fill a vector of tiles instead,
- // since the normal use of this function is to enumerate some tiles.
+ // TODO(enne): Possibly we should fill a vector of tiles instead, since the
+ // normal use of this function is to enumerate some tiles.
DCHECK(!content_rect.IsEmpty());
*left = tiling_data_.TileXIndexFromSrcCoord(content_rect.x());