Index: util/thread/thread.cc |
diff --git a/test/thread.cc b/util/thread/thread.cc |
similarity index 85% |
rename from test/thread.cc |
rename to util/thread/thread.cc |
index baeeafa632152c4edd71aa04be6a4d32a0824d2e..04782bb797895566aeba80e901f086f8bbdb2360 100644 |
--- a/test/thread.cc |
+++ b/util/thread/thread.cc |
@@ -12,19 +12,17 @@ |
// See the License for the specific language governing permissions and |
// limitations under the License. |
-#include "test/thread.h" |
+#include "util/thread/thread.h" |
-#include "gtest/gtest.h" |
+#include "base/logging.h" |
namespace crashpad { |
-namespace test { |
Thread::Thread() : platform_thread_(0) { |
} |
Thread::~Thread() { |
- EXPECT_FALSE(platform_thread_); |
+ DCHECK(!platform_thread_); |
} |
-} // namespace test |
} // namespace crashpad |