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

Side by Side Diff: public/platform/WebMemoryAllocatorDump.h

Issue 1159923006: [tracing] Expose AddOwnershipEdge and CreateAllocatorDump with guid to blink. (blink-side). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « public/platform/Platform.h ('k') | public/platform/WebProcessMemoryDump.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebMemoryAllocatorDump_h 5 #ifndef WebMemoryAllocatorDump_h
6 #define WebMemoryAllocatorDump_h 6 #define WebMemoryAllocatorDump_h
7 7
8 #include "WebCommon.h" 8 #include "WebCommon.h"
9 #include "WebString.h" 9 #include "WebString.h"
10 10
11 namespace blink { 11 namespace blink {
12 typedef uint64_t WebMemoryAllocatorDumpGuid;
12 13
13 // A container which holds all the attributes of a particular dump for a given 14 // A container which holds all the attributes of a particular dump for a given
14 // allocator. 15 // allocator.
15 class BLINK_PLATFORM_EXPORT WebMemoryAllocatorDump { 16 class BLINK_PLATFORM_EXPORT WebMemoryAllocatorDump {
16 public: 17 public:
17 virtual ~WebMemoryAllocatorDump(); 18 virtual ~WebMemoryAllocatorDump();
18 19
19 // Adds a scalar attribute to the dump. 20 // Adds a scalar attribute to the dump.
20 // Arguments: 21 // Arguments:
21 // name: name of the attribute. Typical names, emitted by most allocators 22 // name: name of the attribute. Typical names, emitted by most allocators
22 // dump providers are: "size" and "objects_count". 23 // dump providers are: "size" and "objects_count".
23 // units: the units for the attribute. Gives a hint to the trace-viewer UI 24 // units: the units for the attribute. Gives a hint to the trace-viewer UI
24 // about the semantics of the attribute. 25 // about the semantics of the attribute.
25 // Currently supported values are "bytes" and "objects". 26 // Currently supported values are "bytes" and "objects".
26 // value: the value of the attribute. 27 // value: the value of the attribute.
27 virtual void AddScalar(const char* name, const char* units, uint64_t value) { } 28 virtual void AddScalar(const char* name, const char* units, uint64_t value) { }
28 virtual void AddScalarF(const char* name, const char* units, double value) { } 29 virtual void AddScalarF(const char* name, const char* units, double value) { }
29 virtual void AddString(const char* name, const char* units, const WebString& value) { } 30 virtual void AddString(const char* name, const char* units, const WebString& value) { }
31
32 // |guid| is an optional global dump identifier, unique across all processes
33 // within the scope of a global dump. It is only required when using the
34 // graph APIs (see AddOwnershipEdge) to express retention / suballocation or
35 // cross process sharing. See crbug.com/492102 for design docs.
36 // Subsequent MemoryAllocatorDump(s) with the same |absolute_name| are
37 // expected to have the same guid.
38 virtual WebMemoryAllocatorDumpGuid guid() const
39 {
40 BLINK_ASSERT_NOT_REACHED();
41 return 0;
42 }
30 }; 43 };
31 44
32 } // namespace blink 45 } // namespace blink
33 46
34 #endif // WebMemoryAllocatorDump_h 47 #endif // WebMemoryAllocatorDump_h
OLDNEW
« no previous file with comments | « public/platform/Platform.h ('k') | public/platform/WebProcessMemoryDump.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698