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

Side by Side Diff: src/tracing/traced-value.h

Issue 2418303002: Use TracedValue in runtime statistics. (Closed)
Patch Set: rebase Created 4 years, 2 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 | « src/tracing/trace-event.cc ('k') | src/tracing/traced-value.cc » ('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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 the V8 project 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 V8_TRACING_TRACED_VALUE_H_ 5 #ifndef V8_TRACING_TRACED_VALUE_H_
6 #define V8_TRACING_TRACED_VALUE_H_ 6 #define V8_TRACING_TRACED_VALUE_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
(...skipping 16 matching lines...) Expand all
27 27
28 // These methods assume that |name| is a long lived "quoted" string. 28 // These methods assume that |name| is a long lived "quoted" string.
29 void SetInteger(const char* name, int value); 29 void SetInteger(const char* name, int value);
30 void SetDouble(const char* name, double value); 30 void SetDouble(const char* name, double value);
31 void SetBoolean(const char* name, bool value); 31 void SetBoolean(const char* name, bool value);
32 void SetString(const char* name, const std::string& value); 32 void SetString(const char* name, const std::string& value);
33 void BeginDictionary(const char* name); 33 void BeginDictionary(const char* name);
34 void BeginArray(const char* name); 34 void BeginArray(const char* name);
35 35
36 void AppendInteger(int); 36 void AppendInteger(int);
37 void AppendLongInteger(int64_t);
37 void AppendDouble(double); 38 void AppendDouble(double);
38 void AppendBoolean(bool); 39 void AppendBoolean(bool);
39 void AppendString(const std::string&); 40 void AppendString(const std::string&);
40 void BeginArray(); 41 void BeginArray();
41 void BeginDictionary(); 42 void BeginDictionary();
42 43
43 // ConvertableToTraceFormat implementation. 44 // ConvertableToTraceFormat implementation.
44 void AppendAsTraceFormat(std::string* out) const override; 45 void AppendAsTraceFormat(std::string* out) const override;
45 46
46 private: 47 private:
(...skipping 10 matching lines...) Expand all
57 std::string data_; 58 std::string data_;
58 bool first_item_; 59 bool first_item_;
59 60
60 DISALLOW_COPY_AND_ASSIGN(TracedValue); 61 DISALLOW_COPY_AND_ASSIGN(TracedValue);
61 }; 62 };
62 63
63 } // namespace tracing 64 } // namespace tracing
64 } // namespace v8 65 } // namespace v8
65 66
66 #endif // V8_TRACING_TRACED_VALUE_H_ 67 #endif // V8_TRACING_TRACED_VALUE_H_
OLDNEW
« no previous file with comments | « src/tracing/trace-event.cc ('k') | src/tracing/traced-value.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698