diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-19 23:44:18 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-19 23:44:18 +0000 |
commit | 140ee653f8fdfa395cb829e40e5cc991dc0e86e0 (patch) | |
tree | 72eee252fa51c5cb0ddc25d331453caae40d4cef /skia | |
parent | 1004ebef52fb78fcc9971928d0707288fcb1f217 (diff) | |
download | chromium_src-140ee653f8fdfa395cb829e40e5cc991dc0e86e0.zip chromium_src-140ee653f8fdfa395cb829e40e5cc991dc0e86e0.tar.gz chromium_src-140ee653f8fdfa395cb829e40e5cc991dc0e86e0.tar.bz2 |
Reverts CHECKs as broke build. I likely need to include base/logging.
BUG=25324
TEST=none
TBR=brettw@chromium.org
Review URL: http://codereview.chromium.org/542129
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36572 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-rw-r--r-- | skia/ext/canvas_paint_linux.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/skia/ext/canvas_paint_linux.h b/skia/ext/canvas_paint_linux.h index f37dfa8..26e8113 100644 --- a/skia/ext/canvas_paint_linux.h +++ b/skia/ext/canvas_paint_linux.h @@ -41,13 +41,10 @@ class CanvasPaintT : public T { T::restoreToCount(1); // Blit the dirty rect to the window. - CHECK(window_); cairo_t* cr = gdk_cairo_create(window_); - CHECK(cr); if (composite_alpha_) cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE); cairo_surface_t* source_surface = cairo_get_target(context_); - CHECK(source_surface); GdkRectangle bounds = rectangle(); cairo_set_source_surface(cr, source_surface, bounds.x, bounds.y); gdk_cairo_region(cr, region_); |