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

Unified Diff: src/heap-profiler.h

Issue 1221433021: Move SmartPointer to base. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove some unecessary header includes Created 5 years, 5 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
« BUILD.gn ('K') | « src/gdb-jit.cc ('k') | src/heap/mark-compact.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap-profiler.h
diff --git a/src/heap-profiler.h b/src/heap-profiler.h
index 68e13656c66b05296f26d452048f6267a69b0e45..718c39c86e3690708450459da9b27f846356f76f 100644
--- a/src/heap-profiler.h
+++ b/src/heap-profiler.h
@@ -5,9 +5,9 @@
#ifndef V8_HEAP_PROFILER_H_
#define V8_HEAP_PROFILER_H_
+#include "src/base/smart-pointers.h"
#include "src/heap-snapshot-generator-inl.h"
#include "src/isolate.h"
-#include "src/smart-pointers.h"
namespace v8 {
namespace internal {
@@ -66,11 +66,11 @@ class HeapProfiler {
Heap* heap() const { return ids_->heap(); }
// Mapping from HeapObject addresses to objects' uids.
- SmartPointer<HeapObjectsMap> ids_;
+ base::SmartPointer<HeapObjectsMap> ids_;
List<HeapSnapshot*> snapshots_;
- SmartPointer<StringsStorage> names_;
+ base::SmartPointer<StringsStorage> names_;
List<v8::HeapProfiler::WrapperInfoCallback> wrapper_callbacks_;
- SmartPointer<AllocationTracker> allocation_tracker_;
+ base::SmartPointer<AllocationTracker> allocation_tracker_;
bool is_tracking_object_moves_;
};
« BUILD.gn ('K') | « src/gdb-jit.cc ('k') | src/heap/mark-compact.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698