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

Unified Diff: src/gpu/GrPath.h

Issue 19449002: Replace all instances of GrRect with SkRect. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 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 | « src/gpu/GrOvalRenderer.cpp ('k') | src/gpu/GrPathUtils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrPath.h
diff --git a/src/gpu/GrPath.h b/src/gpu/GrPath.h
index ad3a5c30e0a807e23f220470f66b8a559547849d..c7e7f92064b430b973b951fb891d095925b01f7e 100644
--- a/src/gpu/GrPath.h
+++ b/src/gpu/GrPath.h
@@ -1,4 +1,3 @@
-
/*
* Copyright 2012 Google Inc.
*
@@ -10,7 +9,7 @@
#define GrPath_DEFINED
#include "GrResource.h"
-#include "GrRect.h"
+#include "SkRect.h"
class GrPath : public GrResource {
public:
@@ -18,10 +17,10 @@ public:
GrPath(GrGpu* gpu, bool isWrapped) : INHERITED(gpu, isWrapped) {}
- const GrRect& getBounds() const { return fBounds; }
+ const SkRect& getBounds() const { return fBounds; }
protected:
- GrRect fBounds;
+ SkRect fBounds;
private:
typedef GrResource INHERITED;
« no previous file with comments | « src/gpu/GrOvalRenderer.cpp ('k') | src/gpu/GrPathUtils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698