| Index: ppapi/shared_impl/ppb_trace_event_impl.cc
|
| diff --git a/ppapi/shared_impl/ppb_trace_event_impl.cc b/ppapi/shared_impl/ppb_trace_event_impl.cc
|
| index ce1afb94b51bb18d824a536088e3ea54a47883bc..6db821ff135c0da38a4e4912fe30a7e4ae05190f 100644
|
| --- a/ppapi/shared_impl/ppb_trace_event_impl.cc
|
| +++ b/ppapi/shared_impl/ppb_trace_event_impl.cc
|
| @@ -39,7 +39,8 @@ void TraceEventImpl::AddTraceEvent(int8_t phase,
|
| const uint64_t arg_values[],
|
| uint8_t flags) {
|
|
|
| - COMPILE_ASSERT(sizeof(unsigned long long) == sizeof(uint64_t), msg);
|
| + static_assert(sizeof(unsigned long long) == sizeof(uint64_t),
|
| + "unexpected data type sizes");
|
|
|
| base::debug::TraceLog::GetInstance()->AddTraceEvent(
|
| phase,
|
|
|