aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPath.h
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2014-07-25 08:35:45 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-07-25 08:35:45 -0700
commit6d3fe022d68fd6dd32c0fab30e24fa5a4f048946 (patch)
tree7af60205eeb7a7644e1bf4a8edfa0b1545619b0a /src/gpu/GrPath.h
parent570c392a0056115e103b42c373a61e4e152ea92c (diff)
Rename GrGpuObject to GrGpuResource
R=robertphillips@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/418143004
Diffstat (limited to 'src/gpu/GrPath.h')
-rw-r--r--src/gpu/GrPath.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpu/GrPath.h b/src/gpu/GrPath.h
index 2c0040cbf2..a571935390 100644
--- a/src/gpu/GrPath.h
+++ b/src/gpu/GrPath.h
@@ -8,13 +8,13 @@
#ifndef GrPath_DEFINED
#define GrPath_DEFINED
-#include "GrGpuObject.h"
+#include "GrGpuResource.h"
#include "GrResourceCache.h"
#include "SkPath.h"
#include "SkRect.h"
#include "SkStrokeRec.h"
-class GrPath : public GrGpuObject {
+class GrPath : public GrGpuResource {
public:
SK_DECLARE_INST_COUNT(GrPath);
@@ -45,7 +45,7 @@ protected:
SkRect fBounds;
private:
- typedef GrGpuObject INHERITED;
+ typedef GrGpuResource INHERITED;
};
#endif