summaryrefslogtreecommitdiffstats
path: root/webkit/glue
diff options
context:
space:
mode:
authorcaseq@google.com <caseq@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-18 10:11:30 +0000
committercaseq@google.com <caseq@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-18 10:11:30 +0000
commiteb7a0254489632a0de433f253211a8b7af698550 (patch)
treea63626f4124d313fd414c24e86eea5fe91e31805 /webkit/glue
parent785fa7b84392484ee75d33736eb659e7d983011f (diff)
downloadchromium_src-eb7a0254489632a0de433f253211a8b7af698550.zip
chromium_src-eb7a0254489632a0de433f253211a8b7af698550.tar.gz
chromium_src-eb7a0254489632a0de433f253211a8b7af698550.tar.bz2
Follow-up to r172863 -- remove compat overload for addTraceEvent()
following to removal of thershold parameters in WK:r137896 BUG=webk.it/104784 TEST=none TBR=nduca,darin Review URL: https://codereview.chromium.org/11624010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173710 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r--webkit/glue/webkitplatformsupport_impl.cc18
-rw-r--r--webkit/glue/webkitplatformsupport_impl.h14
2 files changed, 0 insertions, 32 deletions
diff --git a/webkit/glue/webkitplatformsupport_impl.cc b/webkit/glue/webkitplatformsupport_impl.cc
index 0b22bd1..949907a 100644
--- a/webkit/glue/webkitplatformsupport_impl.cc
+++ b/webkit/glue/webkitplatformsupport_impl.cc
@@ -370,24 +370,6 @@ const unsigned char* WebKitPlatformSupportImpl::getTraceCategoryEnabledFlag(
return TRACE_EVENT_API_GET_CATEGORY_ENABLED(category_name);
}
-int WebKitPlatformSupportImpl::addTraceEvent(
- char phase,
- const unsigned char* category_enabled,
- const char* name,
- unsigned long long id,
- int num_args,
- const char** arg_names,
- const unsigned char* arg_types,
- const unsigned long long* arg_values,
- int threshold_begin_id,
- long long threshold,
- unsigned char flags) {
- TRACE_EVENT_API_ADD_TRACE_EVENT(phase, category_enabled, name, id,
- num_args, arg_names, arg_types,
- arg_values, flags);
- return -1;
-}
-
void WebKitPlatformSupportImpl::addTraceEvent(
char phase,
const unsigned char* category_enabled,
diff --git a/webkit/glue/webkitplatformsupport_impl.h b/webkit/glue/webkitplatformsupport_impl.h
index 6583bc3..8f858a2 100644
--- a/webkit/glue/webkitplatformsupport_impl.h
+++ b/webkit/glue/webkitplatformsupport_impl.h
@@ -83,20 +83,6 @@ class WEBKIT_GLUE_EXPORT WebKitPlatformSupportImpl :
const char* name, int sample, int boundary_value);
virtual const unsigned char* getTraceCategoryEnabledFlag(
const char* category_name);
- // TODO(caseq): compatibility overload. Remove once WebKitPlatformSupport
- // is updated.
- virtual int addTraceEvent(
- char phase,
- const unsigned char* category_enabled,
- const char* name,
- unsigned long long id,
- int num_args,
- const char** arg_names,
- const unsigned char* arg_types,
- const unsigned long long* arg_values,
- int threshold_begin_id,
- long long threshold,
- unsigned char flags);
virtual void addTraceEvent(
char phase,
const unsigned char* category_enabled,