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

Unified Diff: cc/test/MockCCQuadCuller.cpp

Issue 10984053: cc: Use ui/gfx geometry types for the CCRenderPass and CCDrawQuad classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
« cc/math/int_point.h ('K') | « cc/test/CCLayerTestCommon.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/MockCCQuadCuller.cpp
diff --git a/cc/test/MockCCQuadCuller.cpp b/cc/test/MockCCQuadCuller.cpp
index 5d01c96e8287185983050b3e17b33a1426a3447e..c209d07219e6a3fbe90b5324b9e55c4e9cd4ce00 100644
--- a/cc/test/MockCCQuadCuller.cpp
+++ b/cc/test/MockCCQuadCuller.cpp
@@ -27,7 +27,7 @@ MockCCQuadCuller::~MockCCQuadCuller()
bool MockCCQuadCuller::append(PassOwnPtr<CCDrawQuad> newQuad, CCAppendQuadsData&)
{
OwnPtr<CCDrawQuad> drawQuad = newQuad;
- if (!drawQuad->quadRect().isEmpty()) {
+ if (!drawQuad->quadRect().IsEmpty()) {
m_activeQuadList.append(drawQuad.release());
return true;
}
« cc/math/int_point.h ('K') | « cc/test/CCLayerTestCommon.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698