Index: webkit/glue/webkitplatformsupport_impl.cc |
diff --git a/webkit/glue/webkitplatformsupport_impl.cc b/webkit/glue/webkitplatformsupport_impl.cc |
index e63d76230ab80dcbd8198e0540da630f20562a68..b3015590541fc24b83e9cfe21fb125134b3c78b2 100644 |
--- a/webkit/glue/webkitplatformsupport_impl.cc |
+++ b/webkit/glue/webkitplatformsupport_impl.cc |
@@ -449,13 +449,13 @@ 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); |
} |
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, |
@@ -463,7 +463,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, flags); |
} |