summaryrefslogtreecommitdiffstats
path: root/base/synchronization
diff options
context:
space:
mode:
Diffstat (limited to 'base/synchronization')
-rw-r--r--base/synchronization/condition_variable_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/synchronization/condition_variable_unittest.cc b/base/synchronization/condition_variable_unittest.cc
index a6426cf..ee33908 100644
--- a/base/synchronization/condition_variable_unittest.cc
+++ b/base/synchronization/condition_variable_unittest.cc
@@ -129,7 +129,7 @@ class WorkQueue : public PlatformThread::Delegate {
const int thread_count_;
int waiting_thread_count_;
- scoped_array<PlatformThreadHandle> thread_handles_;
+ scoped_ptr<PlatformThreadHandle[]> thread_handles_;
std::vector<int> assignment_history_; // Number of assignment per worker.
std::vector<int> completion_history_; // Number of completions per worker.
int thread_started_counter_; // Used to issue unique id to workers.