| Index: src/gpu/gl/GrGLBufferImpl.h
|
| diff --git a/src/gpu/gl/GrGLBufferImpl.h b/src/gpu/gl/GrGLBufferImpl.h
|
| index ce15a98f42a880518d46d34f1a912a4c54005109..ab2555650f1ed50d0cfe7bd7801f712cf1e0210b 100644
|
| --- a/src/gpu/gl/GrGLBufferImpl.h
|
| +++ b/src/gpu/gl/GrGLBufferImpl.h
|
| @@ -8,7 +8,7 @@
|
| #ifndef GrGLBufferImpl_DEFINED
|
| #define GrGLBufferImpl_DEFINED
|
|
|
| -#include "GrNoncopyable.h"
|
| +#include "SkTypes.h"
|
| #include "gl/GrGLFunctions.h"
|
|
|
| class GrGpuGL;
|
| @@ -17,7 +17,7 @@ class GrGpuGL;
|
| * This class serves as the implementation of GrGL*Buffer classes. It was written to avoid code
|
| * duplication in those classes.
|
| */
|
| -class GrGLBufferImpl : public GrNoncopyable {
|
| +class GrGLBufferImpl : public SkNoncopyable {
|
| public:
|
| struct Desc {
|
| bool fIsWrapped;
|
| @@ -54,7 +54,7 @@ private:
|
| void* fCPUData;
|
| void* fLockPtr;
|
|
|
| - typedef GrNoncopyable INHERITED;
|
| + typedef SkNoncopyable INHERITED;
|
| };
|
|
|
| #endif
|
|
|