summaryrefslogtreecommitdiff
path: root/libs/hwui/PathCache.h
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2015-07-30 17:38:35 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-07-30 17:38:35 +0000
commitcef25e5319e4f76682dd63a3c01bfacb19aeeb51 (patch)
tree9504d6b0708f8e3c06158ef597efded8dc93bfaf /libs/hwui/PathCache.h
parentba36e0c2d1f6377671b493a5ae121140c002ce0f (diff)
parent272a685f17cc4828257e521a6f62b7b17870f75e (diff)
Merge "Replace most usages of utils/Vector.h"
Diffstat (limited to 'libs/hwui/PathCache.h')
-rw-r--r--libs/hwui/PathCache.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/hwui/PathCache.h b/libs/hwui/PathCache.h
index 70148631db34..31f8d3553375 100644
--- a/libs/hwui/PathCache.h
+++ b/libs/hwui/PathCache.h
@@ -28,7 +28,8 @@
#include <SkPath.h>
#include <utils/LruCache.h>
#include <utils/Mutex.h>
-#include <utils/Vector.h>
+
+#include <vector>
class SkBitmap;
class SkCanvas;
@@ -307,7 +308,7 @@ private:
sp<PathProcessor> mProcessor;
- Vector<uint32_t> mGarbage;
+ std::vector<uint32_t> mGarbage;
mutable Mutex mLock;
}; // class PathCache