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 439bbd446576daf8e5d3f58c64158ace154a44b6..31301f0492d3bcdeb56032d81527e1714dd33474 100644 |
--- a/ppapi/shared_impl/ppb_trace_event_impl.cc |
+++ b/ppapi/shared_impl/ppb_trace_event_impl.cc |
@@ -23,7 +23,8 @@ void* TraceEventImpl::GetCategoryEnabled(const char* category_name) { |
// return a pointer type to the caller without some const_cast. The pointer |
// type the tracing system works with is normally unsigned char*. |
return const_cast<void*>(static_cast<const void*>( |
- base::debug::TraceLog::GetInstance()->GetCategoryEnabled(category_name))); |
+ base::debug::TraceLog::GetInstance()-> |
+ GetCategoryGroupEnabled(category_name))); |
dsinclair
2013/02/22 21:13:44
Not sure what the indenting should be here? Maybe
rterrazas
2013/02/25 05:55:02
Done.
|
} |
// static |