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

Unified Diff: content/child/blink_platform_impl.cc

Issue 1239593002: Implement a new flow event API that allows binding flow events and regular events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary comments. Created 5 years, 5 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: content/child/blink_platform_impl.cc
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
index 1fbb0a5439a65e14c143a9b8a700405994d01417..e78df92e6f05cbdabc5d437d1a25c2aef3c90a69 100644
--- a/content/child/blink_platform_impl.cc
+++ b/content/child/blink_platform_impl.cc
@@ -641,7 +641,7 @@ blink::Platform::TraceEventHandle BlinkPlatformImpl::addTraceEvent(
phase, category_group_enabled, name, id,
base::PlatformThread::CurrentId(),
timestamp_tt,
- num_args, arg_names, arg_types, arg_values, NULL, flags);
+ num_args, arg_names, arg_types, arg_values, NULL, flags, 0);
blink::Platform::TraceEventHandle result;
memcpy(&result, &handle, sizeof(result));
return result;
@@ -685,7 +685,7 @@ blink::Platform::TraceEventHandle BlinkPlatformImpl::addTraceEvent(
arg_types,
arg_values,
convertable_wrappers,
- flags);
+ flags, 0);
blink::Platform::TraceEventHandle result;
memcpy(&result, &handle, sizeof(result));
return result;

Powered by Google App Engine
This is Rietveld 408576698