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

Unified Diff: cc/CCCheckerboardDrawQuad.h

Issue 10968047: cc_unittests fails on several platforms with 158148 (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
« no previous file with comments | « no previous file | cc/CCCheckerboardDrawQuad.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCCheckerboardDrawQuad.h
===================================================================
--- cc/CCCheckerboardDrawQuad.h (revision 158168)
+++ cc/CCCheckerboardDrawQuad.h (working copy)
@@ -6,7 +6,6 @@
#define CCCheckerboardDrawQuad_h
#include "CCDrawQuad.h"
-#include "SkColor.h"
#include <wtf/PassOwnPtr.h>
namespace cc {
@@ -15,15 +14,11 @@
class CCCheckerboardDrawQuad : public CCDrawQuad {
public:
- static PassOwnPtr<CCCheckerboardDrawQuad> create(const CCSharedQuadState*, const IntRect&, SkColor);
+ static PassOwnPtr<CCCheckerboardDrawQuad> create(const CCSharedQuadState*, const IntRect&);
- SkColor color() const { return m_color; };
-
static const CCCheckerboardDrawQuad* materialCast(const CCDrawQuad*);
private:
- CCCheckerboardDrawQuad(const CCSharedQuadState*, const IntRect&, SkColor);
-
- SkColor m_color;
+ CCCheckerboardDrawQuad(const CCSharedQuadState*, const IntRect&);
};
#pragma pack(pop)
« no previous file with comments | « no previous file | cc/CCCheckerboardDrawQuad.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698