summaryrefslogtreecommitdiffstats
path: root/cc/tiled_layer.cc
diff options
context:
space:
mode:
authorpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-10 06:30:59 +0000
committerpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-10 06:30:59 +0000
commit6eb6bb601716161c58f0ed647a705856df0a03ec (patch)
tree07b8c5ee25b52b94a2b94f2b14b2af0d5a0d78fb /cc/tiled_layer.cc
parent35fadaa2b8a451042bcef22b6f2993cbc6855d94 (diff)
downloadchromium_src-6eb6bb601716161c58f0ed647a705856df0a03ec.zip
chromium_src-6eb6bb601716161c58f0ed647a705856df0a03ec.tar.gz
chromium_src-6eb6bb601716161c58f0ed647a705856df0a03ec.tar.bz2
Remove WTF and WebCore from cc/ and webkit/compositor_bindings/
Ding, dong... BUG=154451 Review URL: https://chromiumcodereview.appspot.com/11410021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167071 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/tiled_layer.cc')
-rw-r--r--cc/tiled_layer.cc29
1 files changed, 10 insertions, 19 deletions
diff --git a/cc/tiled_layer.cc b/cc/tiled_layer.cc
index f3377b1..77be6eb 100644
--- a/cc/tiled_layer.cc
+++ b/cc/tiled_layer.cc
@@ -2,11 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "config.h"
-
#include "cc/tiled_layer.h"
#include "base/basictypes.h"
+#include "build/build_config.h"
#include "cc/geometry.h"
#include "cc/layer_impl.h"
#include "cc/layer_tree_host.h"
@@ -261,10 +260,8 @@ UpdatableTile* TiledLayer::createTile(int i, int j)
addedTile->dirtyRect = m_tiler->tileRect(addedTile);
// Temporary diagnostic crash.
- if (!addedTile)
- CRASH();
- if (!tileAt(i, j))
- CRASH();
+ CHECK(addedTile);
+ CHECK(tileAt(i, j));
return addedTile;
}
@@ -280,7 +277,7 @@ void TiledLayer::setUseLCDText(bool useLCDText)
ContentsScalingLayer::setUseLCDText(useLCDText);
LayerTilingData::BorderTexelOption borderTexelOption;
-#if OS(ANDROID)
+#if defined(OS_ANDROID)
// Always want border texels and GL_LINEAR due to pinch zoom.
borderTexelOption = LayerTilingData::HasBorderTexels;
#else
@@ -490,21 +487,15 @@ void TiledLayer::updateTileTextures(const gfx::Rect& paintRect, int left, int to
// Calculate tile-space rectangle to upload into.
gfx::Vector2d destOffset = sourceRect.origin() - anchor;
- if (destOffset.x() < 0)
- CRASH();
- if (destOffset.y() < 0)
- CRASH();
+ CHECK(destOffset.x() >= 0);
+ CHECK(destOffset.y() >= 0);
// Offset from paint rectangle to this tile's dirty rectangle.
gfx::Vector2d paintOffset = sourceRect.origin() - paintRect.origin();
- if (paintOffset.x() < 0)
- CRASH();
- if (paintOffset.y() < 0)
- CRASH();
- if (paintOffset.x() + sourceRect.width() > paintRect.width())
- CRASH();
- if (paintOffset.y() + sourceRect.height() > paintRect.height())
- CRASH();
+ CHECK(paintOffset.x() >= 0);
+ CHECK(paintOffset.y() >= 0);
+ CHECK(paintOffset.x() + sourceRect.width() <= paintRect.width());
+ CHECK(paintOffset.y() + sourceRect.height() <= paintRect.height());
tile->updaterResource()->update(queue, sourceRect, destOffset, tile->partialUpdate, stats);
if (occlusion)