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

Unified Diff: src/cancelable-task.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/base/atomic-utils.h ('k') | src/heap/heap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/cancelable-task.h
diff --git a/src/cancelable-task.h b/src/cancelable-task.h
index a8387fcd950008e0b416e4cb09c6477a14334147..d844764c099851ae2f2ee6a215c4416dd860150a 100644
--- a/src/cancelable-task.h
+++ b/src/cancelable-task.h
@@ -6,7 +6,7 @@
#define V8_CANCELABLE_TASK_H_
#include "include/v8-platform.h"
-#include "src/atomic-utils.h"
+#include "src/base/atomic-utils.h"
#include "src/base/macros.h"
#include "src/base/platform/condition-variable.h"
#include "src/hashmap.h"
@@ -104,13 +104,13 @@ class Cancelable {
}
CancelableTaskManager* parent_;
- AtomicValue<Status> status_;
+ base::AtomicValue<Status> status_;
uint32_t id_;
// The counter is incremented for failing tries to cancel a task. This can be
// used by the task itself as an indication how often external entities tried
// to abort it.
- AtomicNumber<intptr_t> cancel_counter_;
+ base::AtomicNumber<intptr_t> cancel_counter_;
friend class CancelableTaskManager;
« no previous file with comments | « src/base/atomic-utils.h ('k') | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698