Index: native_client_sdk/src/libraries/gtest_ppapi/thread_condition.h |
diff --git a/native_client_sdk/src/libraries/c_salt/threading/thread_condition.h b/native_client_sdk/src/libraries/gtest_ppapi/thread_condition.h |
similarity index 89% |
rename from native_client_sdk/src/libraries/c_salt/threading/thread_condition.h |
rename to native_client_sdk/src/libraries/gtest_ppapi/thread_condition.h |
index 19c63999ce260e5fa4dd3390701b5ec92c747867..285a5bafb040d0ad47aa7d660627269dd0b15792 100644 |
--- a/native_client_sdk/src/libraries/c_salt/threading/thread_condition.h |
+++ b/native_client_sdk/src/libraries/gtest_ppapi/thread_condition.h |
@@ -2,15 +2,13 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef THREAD_CONDITION_H_ |
-#define THREAD_CONDITION_H_ |
+#ifndef GTEST_PPAPI_THREAD_CONDITION_H_ |
+#define GTEST_PPAPI_THREAD_CONDITION_H_ |
-#include "c_salt/threading/pthread_ext.h" |
+#include "gtest_ppapi/pthread_ext.h" |
struct timespec; |
-namespace c_salt { |
-namespace threading { |
// A wrapper class for condition signaling. Contains a mutex and condition |
// pair. |
class ThreadCondition { |
@@ -69,8 +67,5 @@ class ThreadCondition { |
pthread_mutex_t cond_mutex_; |
pthread_cond_t condition_; |
}; |
-} // namespace threading |
-} // namespace c_salt |
- |
-#endif // THREAD_CONDITION_H_ |
+#endif // GTEST_PPAPI_THREAD_CONDITION_H_ |