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

Unified Diff: src/locked-queue-inl.h

Issue 1954603002: Move atomic-utils.h into base/ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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/heap/spaces.h ('k') | src/profiler/cpu-profiler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/locked-queue-inl.h
diff --git a/src/locked-queue-inl.h b/src/locked-queue-inl.h
index 8b3e9d02bb7ba00267032211b72dc1a8ad85545b..eb18f649aea7c930ba2f5296e5c5ece9952805c2 100644
--- a/src/locked-queue-inl.h
+++ b/src/locked-queue-inl.h
@@ -5,7 +5,7 @@
#ifndef V8_LOCKED_QUEUE_INL_
#define V8_LOCKED_QUEUE_INL_
-#include "src/atomic-utils.h"
+#include "src/base/atomic-utils.h"
#include "src/locked-queue.h"
namespace v8 {
@@ -15,7 +15,7 @@ template <typename Record>
struct LockedQueue<Record>::Node : Malloced {
Node() : next(nullptr) {}
Record value;
- AtomicValue<Node*> next;
+ base::AtomicValue<Node*> next;
};
« no previous file with comments | « src/heap/spaces.h ('k') | src/profiler/cpu-profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698