| Index: base/shared_memory_unittest.cc
|
| ===================================================================
|
| --- base/shared_memory_unittest.cc (revision 5371)
|
| +++ base/shared_memory_unittest.cc (working copy)
|
| @@ -9,11 +9,10 @@
|
|
|
| static const int kNumThreads = 5;
|
|
|
| +namespace base {
|
| +
|
| namespace {
|
|
|
| -class SharedMemoryTest : public testing::Test {
|
| -};
|
| -
|
| // Each thread will open the shared memory. Each thread will take a different 4
|
| // byte int pointer, and keep changing it, with some small pauses in between.
|
| // Verify that each thread's value in the shared memory is always correct.
|
| @@ -181,3 +180,5 @@
|
| }
|
| }
|
| #endif
|
| +
|
| +} // namespace base
|
|
|