Index: base/stats_table_unittest.cc |
=================================================================== |
--- base/stats_table_unittest.cc (revision 5371) |
+++ base/stats_table_unittest.cc (working copy) |
@@ -16,9 +16,8 @@ |
#include <windows.h> |
#endif |
-using base::TimeTicks; |
+namespace base { |
-namespace { |
class StatsTableTest : public MultiProcessTest { |
}; |
@@ -199,7 +198,7 @@ |
// Wait for the processes to finish. |
for (int index = 0; index < kMaxProcs; index++) { |
- EXPECT_TRUE(process_util::WaitForSingleProcess(procs[index], 60 * 1000)); |
+ EXPECT_TRUE(WaitForSingleProcess(procs[index], 60 * 1000)); |
} |
StatsCounter zero_counter(kCounterZero); |
@@ -381,4 +380,4 @@ |
EXPECT_EQ(2, table.GetCounterValue(L"c:bar")); |
} |
-} // namespace |
+} // namespace base |