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

Unified Diff: cc/CCSolidColorDrawQuad.h

Issue 10989028: cc: Remove WebCore dependecies from 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
Index: cc/CCSolidColorDrawQuad.h
diff --git a/cc/CCSolidColorDrawQuad.h b/cc/CCSolidColorDrawQuad.h
index 6825612e491472f83634bc54f443dd3f0e1a771d..46699c94efc082dffe40be3d3049fb2f96a44b80 100644
--- a/cc/CCSolidColorDrawQuad.h
+++ b/cc/CCSolidColorDrawQuad.h
@@ -15,13 +15,13 @@ namespace cc {
class CCSolidColorDrawQuad : public CCDrawQuad {
public:
- static scoped_ptr<CCSolidColorDrawQuad> create(const CCSharedQuadState*, const IntRect&, SkColor);
+ static scoped_ptr<CCSolidColorDrawQuad> create(const CCSharedQuadState*, const WebKit::WebRect&, SkColor);
SkColor color() const { return m_color; };
static const CCSolidColorDrawQuad* materialCast(const CCDrawQuad*);
private:
- CCSolidColorDrawQuad(const CCSharedQuadState*, const IntRect&, SkColor);
+ CCSolidColorDrawQuad(const CCSharedQuadState*, const WebKit::WebRect&, SkColor);
SkColor m_color;
};
« no previous file with comments | « cc/CCSharedQuadState.cpp ('k') | cc/CCSolidColorDrawQuad.cpp » ('j') | cc/scoped_ptr_hash_map.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698