summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/webkitplatformsupport_impl.cc2
-rw-r--r--webkit/glue/webkitplatformsupport_impl.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/webkit/glue/webkitplatformsupport_impl.cc b/webkit/glue/webkitplatformsupport_impl.cc
index f55ecb6..83c74e3 100644
--- a/webkit/glue/webkitplatformsupport_impl.cc
+++ b/webkit/glue/webkitplatformsupport_impl.cc
@@ -305,7 +305,7 @@ void WebKitPlatformSupportImpl::traceEventEnd(const char* name, void* id,
TRACE_EVENT_END_ETW(name, id, extra);
}
-const unsigned char* WebKitPlatformSupportImpl::getCategoryEnabled(
+const unsigned char* WebKitPlatformSupportImpl::getTraceCategoryEnabledFlag(
const char* category_name) {
return TRACE_EVENT_API_GET_CATEGORY_ENABLED(category_name);
}
diff --git a/webkit/glue/webkitplatformsupport_impl.h b/webkit/glue/webkitplatformsupport_impl.h
index ad9c4a7..9becc07 100644
--- a/webkit/glue/webkitplatformsupport_impl.h
+++ b/webkit/glue/webkitplatformsupport_impl.h
@@ -73,7 +73,8 @@ class WEBKIT_GLUE_EXPORT WebKitPlatformSupportImpl :
virtual bool isTraceEventEnabled() const;
virtual void traceEventBegin(const char* name, void* id, const char* extra);
virtual void traceEventEnd(const char* name, void* id, const char* extra);
- virtual const unsigned char* getCategoryEnabled(const char* category_name);
+ virtual const unsigned char* getTraceCategoryEnabledFlag(
+ const char* category_name);
virtual int addTraceEvent(
char phase,
const unsigned char* category_enabled,