Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1826)

Unified Diff: webkit/glue/webkitplatformsupport_impl.cc

Issue 12150004: Category group support/Renamings. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: More renamings and category filter cleanups. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
« ppapi/shared_impl/ppb_trace_event_impl.cc ('K') | « webkit/glue/webkitplatformsupport_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698