| Index: util/synchronization/semaphore_test.cc
|
| diff --git a/util/synchronization/semaphore_test.cc b/util/synchronization/semaphore_test.cc
|
| index 3eb53da7ac6318847451115743f61734d2f93a8e..07cc45b7c42bf786bb918fb406595d59631a7424 100644
|
| --- a/util/synchronization/semaphore_test.cc
|
| +++ b/util/synchronization/semaphore_test.cc
|
| @@ -18,10 +18,10 @@
|
|
|
| #include "gtest/gtest.h"
|
|
|
| +namespace crashpad {
|
| +namespace test {
|
| namespace {
|
|
|
| -using namespace crashpad;
|
| -
|
| TEST(Semaphore, Simple) {
|
| Semaphore semaphore(1);
|
| semaphore.Wait();
|
| @@ -86,3 +86,5 @@ TEST(Semaphore, TenThreaded) {
|
| }
|
|
|
| } // namespace
|
| +} // namespace test
|
| +} // namespace crashpad
|
|
|