summaryrefslogtreecommitdiffstats
path: root/skia/ext/platform_canvas_linux.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-14 16:58:55 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-14 16:58:55 +0000
commit87080c619c9d60f0ed3aa988d89b36c35eca95b1 (patch)
tree93d5c34a529858c1d891a55a092ee53efd06976b /skia/ext/platform_canvas_linux.cc
parentc31085d9656ff79a389318ffc7afed0fd2cd296c (diff)
downloadchromium_src-87080c619c9d60f0ed3aa988d89b36c35eca95b1.zip
chromium_src-87080c619c9d60f0ed3aa988d89b36c35eca95b1.tar.gz
chromium_src-87080c619c9d60f0ed3aa988d89b36c35eca95b1.tar.bz2
Remove a bunch of base dependencies from skia/ext. The only nontrivial change is
in bitmap_platform_device_mac. The refcounting now matches the way the Windows file works. Review URL: http://codereview.chromium.org/17627 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8015 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/ext/platform_canvas_linux.cc')
-rw-r--r--skia/ext/platform_canvas_linux.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/skia/ext/platform_canvas_linux.cc b/skia/ext/platform_canvas_linux.cc
index 578575a..5c14707 100644
--- a/skia/ext/platform_canvas_linux.cc
+++ b/skia/ext/platform_canvas_linux.cc
@@ -4,9 +4,9 @@
#include "skia/ext/platform_canvas_linux.h"
-#include "base/logging.h"
#include "skia/ext/platform_device_linux.h"
#include "skia/ext/bitmap_platform_device_linux.h"
+#include "SkTypes.h"
namespace skia {
@@ -16,7 +16,7 @@ PlatformCanvasLinux::PlatformCanvasLinux() : SkCanvas() {
PlatformCanvasLinux::PlatformCanvasLinux(int width, int height, bool is_opaque)
: SkCanvas() {
if (!initialize(width, height, is_opaque))
- CHECK(false);
+ SK_CRASH();
}
PlatformCanvasLinux::~PlatformCanvasLinux() {
@@ -42,7 +42,7 @@ SkDevice* PlatformCanvasLinux::createDevice(SkBitmap::Config config,
int width,
int height,
bool is_opaque, bool isForLayer) {
- DCHECK(config == SkBitmap::kARGB_8888_Config);
+ SkASSERT(config == SkBitmap::kARGB_8888_Config);
return createPlatformDevice(width, height, is_opaque);
}