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

Unified Diff: content/browser/tracing/tracing_controller_impl_data_sinks.cc

Issue 1148633007: Hooked the trace event argument whitelist up to the background_trace_manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/browser/tracing/tracing_controller_impl_data_sinks.cc
diff --git a/content/browser/tracing/tracing_controller_impl_data_sinks.cc b/content/browser/tracing/tracing_controller_impl_data_sinks.cc
index a6d6e37ad1398a4df0772058d9f76cbd2bfa6eef..ca7b4f96fa8e491eaf5528f65e724828ef73fa23 100644
--- a/content/browser/tracing/tracing_controller_impl_data_sinks.cc
+++ b/content/browser/tracing/tracing_controller_impl_data_sinks.cc
@@ -281,6 +281,12 @@ TracingController::CreateStringSink(
}
scoped_refptr<TracingController::TraceDataSink>
+TracingController::CreateStringSink(
+ scoped_refptr<TracingController::TraceDataEndpoint> endpoint) {
+ return new StringTraceDataSink(endpoint);
+}
+
+scoped_refptr<TracingController::TraceDataSink>
TracingController::CreateCompressedStringSink(
scoped_refptr<TracingController::TraceDataEndpoint> endpoint) {
return new CompressedStringTraceDataSink(endpoint);

Powered by Google App Engine
This is Rietveld 408576698