Index: base/synchronization/condition_variable_unittest.cc |
diff --git a/base/synchronization/condition_variable_unittest.cc b/base/synchronization/condition_variable_unittest.cc |
index a6426cfdc3c2a59275d744be156303d2e3f04a86..ee3390856968b7abdd6716c4d6a309adfba7a943 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. |