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

Unified Diff: src/sweeper-thread.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
« src/base/macros.h ('K') | « src/sweeper-thread.h ('k') | src/token.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/sweeper-thread.cc
diff --git a/src/sweeper-thread.cc b/src/sweeper-thread.cc
index ea2553dfaa4b22189ee3a0f0d3fa59f0c75fc5e3..9ce5ec4d85736657f826b0c42b0f40fad181d6be 100644
--- a/src/sweeper-thread.cc
+++ b/src/sweeper-thread.cc
@@ -67,7 +67,7 @@ void SweeperThread::WaitForSweeperThread() {
bool SweeperThread::SweepingCompleted() {
- bool value = end_sweeping_semaphore_.WaitFor(TimeDelta::FromSeconds(0));
+ bool value = end_sweeping_semaphore_.WaitFor(base::TimeDelta::FromSeconds(0));
if (value) {
end_sweeping_semaphore_.Signal();
}
« src/base/macros.h ('K') | « src/sweeper-thread.h ('k') | src/token.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698