OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 | 5 |
6 /** | 6 /** |
7 * This file defines the <code>PPB_Trace_Event</code> interface. It is meant | 7 * This file defines the <code>PPB_Trace_Event</code> interface. It is meant |
8 * to be used in plugins as the API that trace macros from trace_event.h use. | 8 * to be used in plugins as the API that trace macros from trace_event.h use. |
9 */ | 9 */ |
10 | 10 |
11 label Chrome { | 11 label Chrome { |
12 M25 = 0.1 | 12 M25 = 0.1, |
13 M29 = 0.2 | |
13 }; | 14 }; |
14 | 15 |
15 interface PPB_Trace_Event_Dev { | 16 interface PPB_Trace_Event_Dev { |
16 /** | 17 /** |
17 * Gets a pointer to a character for identifying a category name in the | 18 * Gets a pointer to a character for identifying a category name in the |
18 * tracing system as well as for being able to early exit in client-side | 19 * tracing system as well as for being able to early exit in client-side |
19 * tracing code. | 20 * tracing code. |
20 * | 21 * |
21 * NB: This mem_t return value should technically be const, but return values | 22 * NB: This mem_t return value should technically be const, but return values |
22 * for Pepper IDL of mem_t type are not const. The same is true for the arg | 23 * for Pepper IDL of mem_t type are not const. The same is true for the arg |
(...skipping 13 matching lines...) Expand all Loading... | |
36 [in] mem_t category_enabled, | 37 [in] mem_t category_enabled, |
37 [in] cstr_t name, | 38 [in] cstr_t name, |
38 [in] uint64_t id, | 39 [in] uint64_t id, |
39 [in] uint32_t num_args, | 40 [in] uint32_t num_args, |
40 [in, size_as=num_args] str_t[] arg_names, | 41 [in, size_as=num_args] str_t[] arg_names, |
41 [in, size_as=num_args] uint8_t[] arg_types, | 42 [in, size_as=num_args] uint8_t[] arg_types, |
42 [in, size_as=num_args] uint64_t[] arg_values, | 43 [in, size_as=num_args] uint64_t[] arg_values, |
43 [in] uint8_t flags); | 44 [in] uint8_t flags); |
44 | 45 |
45 /** | 46 /** |
47 * Adds a trace event to the platform tracing system. This function call is | |
elijahtaylor1
2013/06/24 21:04:18
This comment is identical to the previous one. Ca
grosse
2013/06/24 23:16:46
Done.
| |
48 * usually the result of a TRACE_* macro from trace_event.h when tracing and | |
49 * the category of the particular trace are enabled. It is not advisable to | |
50 * call this function on its own; it is really only meant to be used by the | |
51 * trace macros. | |
52 */ | |
53 [version=0.2] | |
54 void AddTraceEventWithThreadIdAndTimestamp( | |
55 [in] int8_t phase, | |
56 [in] mem_t category_enabled, | |
57 [in] cstr_t name, | |
58 [in] uint64_t id, | |
59 [in] int32_t thread_id, | |
60 [in] int64_t timestamp, | |
dmichael (off chromium)
2013/06/24 17:43:42
Do you plan to ever pass anything other than Now()
grosse
2013/06/24 23:16:46
We want to make sure that we're using the same clo
dmichael (off chromium)
2013/06/25 21:01:57
PPB_Core::GetTimeTicks also uses base::TimeTicks::
| |
61 [in] uint32_t num_args, | |
62 [in, size_as=num_args] str_t[] arg_names, | |
63 [in, size_as=num_args] uint8_t[] arg_types, | |
64 [in, size_as=num_args] uint64_t[] arg_values, | |
65 [in] uint8_t flags); | |
66 | |
67 /** | |
68 * Get the current clock value, suitable for adding trace events. | |
elijahtaylor1
2013/06/24 21:04:18
It isn't clear from this comment why it is useful
grosse
2013/06/24 23:16:46
Done.
| |
69 */ | |
70 [version=0.2] | |
71 int64_t Now(); | |
72 | |
73 /** | |
46 * Sets the thread name of the calling thread in the tracing system so it will | 74 * Sets the thread name of the calling thread in the tracing system so it will |
47 * show up properly in chrome://tracing. | 75 * show up properly in chrome://tracing. |
48 */ | 76 */ |
49 void SetThreadName([in] cstr_t thread_name); | 77 void SetThreadName([in] cstr_t thread_name); |
50 }; | 78 }; |
OLD | NEW |