GrTArray->SkTArray & docs
Review URL: http://codereview.appspot.com/5005045/
git-svn-id: http://skia.googlecode.com/svn/trunk@2265 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gpu/include/GrClip.h b/gpu/include/GrClip.h
index 4abd8da..9e235bf 100644
--- a/gpu/include/GrClip.h
+++ b/gpu/include/GrClip.h
@@ -14,9 +14,9 @@
#include "GrClipIterator.h"
#include "GrRect.h"
#include "GrPath.h"
-#include "GrTArray.h"
#include "GrTemplates.h"
+#include "SkTArray.h"
class GrClip {
public:
@@ -135,8 +135,8 @@
enum {
kPreAllocElements = 4,
};
- GrAlignedSTStorage<kPreAllocElements, Element> fListStorage;
- GrTArray<Element> fList;
+ SkAlignedSTStorage<kPreAllocElements, Element> fListStorage;
+ SkTArray<Element> fList;
};
#endif