summaryrefslogtreecommitdiff
path: root/libs/hwui/thread/TaskManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/hwui/thread/TaskManager.h')
-rw-r--r--libs/hwui/thread/TaskManager.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libs/hwui/thread/TaskManager.h b/libs/hwui/thread/TaskManager.h
index 10e8b9e0bead..d0eb3049ae37 100644
--- a/libs/hwui/thread/TaskManager.h
+++ b/libs/hwui/thread/TaskManager.h
@@ -20,10 +20,11 @@
#include <utils/Mutex.h>
#include <utils/String8.h>
#include <utils/Thread.h>
-#include <utils/Vector.h>
#include "Signal.h"
+#include <vector>
+
namespace android {
namespace uirenderer {
@@ -89,7 +90,7 @@ private:
// Lock for the list of tasks
mutable Mutex mLock;
- Vector<TaskWrapper> mTasks;
+ std::vector<TaskWrapper> mTasks;
// Signal used to wake up the thread when a new
// task is available in the list
@@ -98,7 +99,7 @@ private:
const String8 mName;
};
- Vector<sp<WorkerThread> > mThreads;
+ std::vector<sp<WorkerThread> > mThreads;
};
}; // namespace uirenderer