Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(576)

Side by Side Diff: Source/core/html/canvas/CanvasRenderingContext2D.cpp

Issue 327323002: Start removing the double-negative !ASSERT_DISABLED (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/html/HTMLSelectElement.cpp ('k') | Source/core/inspector/InspectorCounters.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * Copyright (C) 2007 Alp Toker <alp@atoker.com> 4 * Copyright (C) 2007 Alp Toker <alp@atoker.com>
5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
6 * Copyright (C) 2008 Dirk Schulze <krit@webkit.org> 6 * Copyright (C) 2008 Dirk Schulze <krit@webkit.org>
7 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. 7 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved.
8 * Copyright (C) 2012, 2013 Intel Corporation. All rights reserved. 8 * Copyright (C) 2012, 2013 Intel Corporation. All rights reserved.
9 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved. 9 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved.
10 * 10 *
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 } 109 }
110 } 110 }
111 } 111 }
112 112
113 CanvasRenderingContext2D::~CanvasRenderingContext2D() 113 CanvasRenderingContext2D::~CanvasRenderingContext2D()
114 { 114 {
115 } 115 }
116 116
117 void CanvasRenderingContext2D::validateStateStack() 117 void CanvasRenderingContext2D::validateStateStack()
118 { 118 {
119 #if !ASSERT_DISABLED 119 #if ASSERT_ENABLED
120 GraphicsContext* context = canvas()->existingDrawingContext(); 120 GraphicsContext* context = canvas()->existingDrawingContext();
121 if (context && !context->contextDisabled()) 121 if (context && !context->contextDisabled())
122 ASSERT(context->saveCount() == m_stateStack.size()); 122 ASSERT(context->saveCount() == m_stateStack.size());
123 #endif 123 #endif
124 } 124 }
125 125
126 bool CanvasRenderingContext2D::isAccelerated() const 126 bool CanvasRenderingContext2D::isAccelerated() const
127 { 127 {
128 if (!canvas()->hasImageBuffer()) 128 if (!canvas()->hasImageBuffer())
129 return false; 129 return false;
(...skipping 2223 matching lines...) Expand 10 before | Expand all | Expand 10 after
2353 c->setAlphaAsFloat(1.0); 2353 c->setAlphaAsFloat(1.0);
2354 c->clearShadow(); 2354 c->clearShadow();
2355 c->setCompositeOperation(CompositeSourceOver, blink::WebBlendModeNormal); 2355 c->setCompositeOperation(CompositeSourceOver, blink::WebBlendModeNormal);
2356 c->drawFocusRing(path, focusRingWidth, focusRingOutline, focusRingColor); 2356 c->drawFocusRing(path, focusRingWidth, focusRingOutline, focusRingColor);
2357 c->restore(); 2357 c->restore();
2358 validateStateStack(); 2358 validateStateStack();
2359 didDraw(dirtyRect); 2359 didDraw(dirtyRect);
2360 } 2360 }
2361 2361
2362 } // namespace WebCore 2362 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/HTMLSelectElement.cpp ('k') | Source/core/inspector/InspectorCounters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698