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

Unified Diff: src/v8.cc

Issue 316133002: Move atomic ops and related files 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
« no previous file with comments | « src/unbound-queue-inl.h ('k') | src/v8dll-main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/v8.cc
diff --git a/src/v8.cc b/src/v8.cc
index 38e00fe717102e7b012c0365fa4952be48ee0cf9..8aba51ac9a67a4260d85e37e42286f48e0b427cf 100644
--- a/src/v8.cc
+++ b/src/v8.cc
@@ -5,6 +5,7 @@
#include "src/v8.h"
#include "src/assembler.h"
+#include "src/base/once.h"
#include "src/isolate.h"
#include "src/elements.h"
#include "src/bootstrapper.h"
@@ -18,7 +19,6 @@
#endif
#include "src/lithium-allocator.h"
#include "src/objects.h"
-#include "src/once.h"
#include "src/platform.h"
#include "src/sampler.h"
#include "src/runtime-profiler.h"
@@ -111,7 +111,7 @@ void V8::InitializeOncePerProcessImpl() {
void V8::InitializeOncePerProcess() {
- CallOnce(&init_once, &InitializeOncePerProcessImpl);
+ base::CallOnce(&init_once, &InitializeOncePerProcessImpl);
}
« no previous file with comments | « src/unbound-queue-inl.h ('k') | src/v8dll-main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698