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

Unified Diff: src/heap-profiler.h

Issue 1283033003: Remove inline header includes from non-inline headers (1). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix GCC for realz. Created 5 years, 4 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/gdb-jit.cc ('k') | src/heap-profiler.cc » ('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 718c39c86e3690708450459da9b27f846356f76f..16dd08a26592fb0821a10a7af31d21e3f2694da6 100644
--- a/src/heap-profiler.h
+++ b/src/heap-profiler.h
@@ -6,13 +6,16 @@
#define V8_HEAP_PROFILER_H_
#include "src/base/smart-pointers.h"
-#include "src/heap-snapshot-generator-inl.h"
#include "src/isolate.h"
namespace v8 {
namespace internal {
+// Forward declarations.
+class AllocationTracker;
+class HeapObjectsMap;
class HeapSnapshot;
+class StringsStorage;
class HeapProfiler {
public:
@@ -63,7 +66,7 @@ class HeapProfiler {
void ClearHeapObjectMap();
private:
- Heap* heap() const { return ids_->heap(); }
+ Heap* heap() const;
// Mapping from HeapObject addresses to objects' uids.
base::SmartPointer<HeapObjectsMap> ids_;
« no previous file with comments | « src/gdb-jit.cc ('k') | src/heap-profiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698