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

Unified Diff: src/heap.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/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index 1b2d17c9d66b28125560515fb4c94befe54ae645..d271017958f7844bb7d29559af3580ef43589d2f 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -21,7 +21,7 @@
#include "src/natives.h"
#include "src/objects-visiting.h"
#include "src/objects-visiting-inl.h"
-#include "src/once.h"
+#include "src/base/once.h"
Jakob Kummerow 2014/06/05 11:49:06 nit: alpha-sort please
#include "src/runtime-profiler.h"
#include "src/scopeinfo.h"
#include "src/snapshot.h"
@@ -5149,7 +5149,7 @@ bool Heap::SetUp() {
if (!ConfigureHeapDefault()) return false;
}
- CallOnce(&initialize_gc_once, &InitializeGCOnce);
+ base::CallOnce(&initialize_gc_once, &InitializeGCOnce);
MarkMapPointersAsEncoded(false);

Powered by Google App Engine
This is Rietveld 408576698