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

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
Index: src/v8.cc
diff --git a/src/v8.cc b/src/v8.cc
index 38e00fe717102e7b012c0365fa4952be48ee0cf9..6ec6f581c6d11919228acf90b7cba4060947b43f 100644
--- a/src/v8.cc
+++ b/src/v8.cc
@@ -18,7 +18,7 @@
#endif
#include "src/lithium-allocator.h"
#include "src/objects.h"
-#include "src/once.h"
+#include "src/base/once.h"
Jakob Kummerow 2014/06/05 11:49:06 nit: alpha-sort please
#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);
}

Powered by Google App Engine
This is Rietveld 408576698