[MediaRouter] Update MR-2-Extension's PostMessage to return boolean.
[chromium-blink-merge.git] / gin / v8_isolate_memory_dump_provider.h
blob99a050bf0ff44c8c3c1b6b49863a0f51e9a40f4e
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef GIN_V8_ISOLATE_MEMORY_DUMP_PROVIDER_H_
6 #define GIN_V8_ISOLATE_MEMORY_DUMP_PROVIDER_H_
8 #include <string>
10 #include "base/trace_event/memory_dump_provider.h"
11 #include "gin/gin_export.h"
13 namespace gin {
15 class IsolateHolder;
17 // Memory dump provider for the chrome://tracing infrastructure. It dumps
18 // summarized memory stats about the V8 Isolate.
19 class V8IsolateMemoryDumpProvider
20 : public base::trace_event::MemoryDumpProvider {
21 public:
22 explicit V8IsolateMemoryDumpProvider(IsolateHolder* isolate_holder);
23 ~V8IsolateMemoryDumpProvider() override;
25 // MemoryDumpProvider implementation.
26 bool OnMemoryDump(
27 base::trace_event::ProcessMemoryDump* process_memory_dump) override;
29 private:
30 IsolateHolder* isolate_holder_; // Not owned.
32 void DumpHeapSpacesStatistics(
33 base::trace_event::ProcessMemoryDump* process_memory_dump,
34 const std::string& dump_base_name);
35 void DumpHeapObjectStatistics(
36 base::trace_event::ProcessMemoryDump* process_memory_dump,
37 const std::string& dump_base_name);
39 DISALLOW_COPY_AND_ASSIGN(V8IsolateMemoryDumpProvider);
42 } // namespace gin
44 #endif // GIN_V8_ISOLATE_MEMORY_DUMP_PROVIDER_H_