| Index: webkit/glue/webkitplatformsupport_impl.cc
|
| diff --git a/webkit/glue/webkitplatformsupport_impl.cc b/webkit/glue/webkitplatformsupport_impl.cc
|
| index e6b92363486d4e937c8ff19c17d616e909602f1e..a365d7e929509154ee672e775fbb3ed8e91c4178 100644
|
| --- a/webkit/glue/webkitplatformsupport_impl.cc
|
| +++ b/webkit/glue/webkitplatformsupport_impl.cc
|
| @@ -448,8 +448,8 @@ void WebKitPlatformSupportImpl::histogramEnumeration(
|
| }
|
|
|
| const unsigned char* WebKitPlatformSupportImpl::getTraceCategoryEnabledFlag(
|
| - const char* category_name) {
|
| - return TRACE_EVENT_API_GET_CATEGORY_ENABLED(category_name);
|
| + const char* category_group) {
|
| + return TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(category_group);
|
| }
|
|
|
| long* WebKitPlatformSupportImpl::getTraceSamplingState(
|
| @@ -469,7 +469,7 @@ long* WebKitPlatformSupportImpl::getTraceSamplingState(
|
|
|
| void WebKitPlatformSupportImpl::addTraceEvent(
|
| char phase,
|
| - const unsigned char* category_enabled,
|
| + const unsigned char* category_group_enabled,
|
| const char* name,
|
| unsigned long long id,
|
| int num_args,
|
| @@ -477,7 +477,7 @@ void WebKitPlatformSupportImpl::addTraceEvent(
|
| const unsigned char* arg_types,
|
| const unsigned long long* arg_values,
|
| unsigned char flags) {
|
| - TRACE_EVENT_API_ADD_TRACE_EVENT(phase, category_enabled, name, id,
|
| + TRACE_EVENT_API_ADD_TRACE_EVENT(phase, category_group_enabled, name, id,
|
| num_args, arg_names, arg_types,
|
| arg_values, NULL, flags);
|
| }
|
|
|