Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Unified Diff: src/base/platform/condition-variable.cc

Issue 358363002: Move platform abstraction to base library (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/base/platform/condition-variable.cc
diff --git a/src/platform/condition-variable.cc b/src/base/platform/condition-variable.cc
similarity index 98%
rename from src/platform/condition-variable.cc
rename to src/base/platform/condition-variable.cc
index e180acdcb7fe91bf8eb5222734b09e5590110f8a..b4e18b74a35f4731fd81c613a72c45980faeff16 100644
--- a/src/platform/condition-variable.cc
+++ b/src/base/platform/condition-variable.cc
@@ -2,15 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "src/platform/condition-variable.h"
+#include "src/base/platform/condition-variable.h"
#include <errno.h>
#include <time.h>
-#include "src/platform/time.h"
+#include "src/base/platform/time.h"
namespace v8 {
-namespace internal {
+namespace base {
#if V8_OS_POSIX
@@ -319,4 +319,4 @@ bool ConditionVariable::WaitFor(Mutex* mutex, const TimeDelta& rel_time) {
#endif // V8_OS_POSIX
-} } // namespace v8::internal
+} } // namespace v8::base

Powered by Google App Engine
This is Rietveld 408576698