summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authordsinclair@chromium.org <dsinclair@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-10 15:21:45 +0000
committerdsinclair@chromium.org <dsinclair@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-10 15:21:45 +0000
commit296969e578a069f7c5155087acfef4f2a422d3cc (patch)
tree9443d64e2241fc94285bc9019e17eaf23cffa38a /ppapi
parente4cd82eb189ce76bb72726ac159242f9881f713e (diff)
downloadchromium_src-296969e578a069f7c5155087acfef4f2a422d3cc.zip
chromium_src-296969e578a069f7c5155087acfef4f2a422d3cc.tar.gz
chromium_src-296969e578a069f7c5155087acfef4f2a422d3cc.tar.bz2
Add a ConvertableToTraceFormat type to the trace framework.
This patch allows us to have larger objects passed into the trace framework which, at the point when we output tracing data, will request they be converted to TraceFormat by calling the AppendAsTraceFormat method. BUG= Review URL: https://chromiumcodereview.appspot.com/13590005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193388 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r--ppapi/shared_impl/ppb_trace_event_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/shared_impl/ppb_trace_event_impl.cc b/ppapi/shared_impl/ppb_trace_event_impl.cc
index 439bbd44..04c13fd 100644
--- a/ppapi/shared_impl/ppb_trace_event_impl.cc
+++ b/ppapi/shared_impl/ppb_trace_event_impl.cc
@@ -43,7 +43,7 @@ void TraceEventImpl::AddTraceEvent(int8_t phase,
// an unsigned long int, but trace_event internals are hermetic and
// accepts an |unsigned long long*|. The pointer types are compatible but
// the compiler throws an error without an explicit cast.
- reinterpret_cast<const unsigned long long*>(arg_values), flags);
+ reinterpret_cast<const unsigned long long*>(arg_values), NULL, flags);
}
// static