This source file includes following definitions.
- GetCategoryEnabled
- AddTraceEvent
- AddTraceEventWithThreadIdAndTimestamp
- Now
- SetThreadName
- GetPPB_Trace_Event_Dev_0_1_Thunk
- GetPPB_Trace_Event_Dev_0_2_Thunk
#include "ppapi/shared_impl/ppb_trace_event_impl.h"
#include "base/basictypes.h"
#include "base/debug/trace_event.h"
#include "base/threading/platform_thread.h"
#include "ppapi/thunk/thunk.h"
namespace ppapi {
void* TraceEventImpl::GetCategoryEnabled(const char* category_name) {
return const_cast<void*>(static_cast<const void*>(
base::debug::TraceLog::GetInstance()->GetCategoryGroupEnabled(
category_name)));
}
void TraceEventImpl::AddTraceEvent(int8_t phase,
const void* category_enabled,
const char* name,
uint64_t id,
uint32_t num_args,
const char* arg_names[],
const uint8_t arg_types[],
const uint64_t arg_values[],
uint8_t flags) {
COMPILE_ASSERT(sizeof(unsigned long long) == sizeof(uint64_t), msg);
base::debug::TraceLog::GetInstance()->AddTraceEvent(
phase,
static_cast<const unsigned char*>(category_enabled),
name,
id,
num_args,
arg_names,
arg_types,
reinterpret_cast<const unsigned long long*>(arg_values),
NULL,
flags);
}
void TraceEventImpl::AddTraceEventWithThreadIdAndTimestamp(
int8_t phase,
const void* category_enabled,
const char* name,
uint64_t id,
int32_t thread_id,
int64_t timestamp,
uint32_t num_args,
const char* arg_names[],
const uint8_t arg_types[],
const uint64_t arg_values[],
uint8_t flags) {
base::debug::TraceLog::GetInstance()->AddTraceEventWithThreadIdAndTimestamp(
phase,
static_cast<const unsigned char*>(category_enabled),
name,
id,
thread_id,
base::TimeTicks::FromInternalValue(timestamp),
num_args,
arg_names,
arg_types,
reinterpret_cast<const unsigned long long*>(arg_values),
NULL,
flags);
}
int64_t TraceEventImpl::Now() {
return base::TimeTicks::NowFromSystemTraceTime().ToInternalValue();
}
void TraceEventImpl::SetThreadName(const char* thread_name) {
base::PlatformThread::SetName(thread_name);
}
namespace {
const PPB_Trace_Event_Dev_0_1 g_ppb_trace_event_thunk_0_1 = {
&TraceEventImpl::GetCategoryEnabled, &TraceEventImpl::AddTraceEvent,
&TraceEventImpl::SetThreadName, };
const PPB_Trace_Event_Dev_0_2 g_ppb_trace_event_thunk_0_2 = {
&TraceEventImpl::GetCategoryEnabled,
&TraceEventImpl::AddTraceEvent,
&TraceEventImpl::AddTraceEventWithThreadIdAndTimestamp,
&TraceEventImpl::Now,
&TraceEventImpl::SetThreadName, };
}
}
namespace ppapi {
namespace thunk {
const PPB_Trace_Event_Dev_0_1* GetPPB_Trace_Event_Dev_0_1_Thunk() {
return &g_ppb_trace_event_thunk_0_1;
}
const PPB_Trace_Event_Dev_0_2* GetPPB_Trace_Event_Dev_0_2_Thunk() {
return &g_ppb_trace_event_thunk_0_2;
}
}
}