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

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

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Exclude certain files from jumbo because of a Windows problem Created 3 years, 3 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
« no previous file with comments | « content/browser/tracing/tracing_controller_impl.cc ('k') | content/browser/webrtc/webrtc_eventlog_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 fa6b7d7b13d8504fca3010e4a26375791d145877..90d790c3c63f135b0e5bea94bffbda4d041c9026 100644
--- a/content/browser/tracing/tracing_controller_impl_data_sinks.cc
+++ b/content/browser/tracing/tracing_controller_impl_data_sinks.cc
@@ -17,7 +17,7 @@ namespace content {
namespace {
-const char kChromeTraceLabel[] = "traceEvents";
+const char kChromeTraceLabelStr[] = "traceEvents";
const char kMetadataTraceLabel[] = "metadata";
class StringTraceDataEndpoint : public TraceDataEndpoint {
@@ -150,7 +150,7 @@ class JSONTraceDataSink : public TraceDataSinkImplBase {
if (had_received_first_chunk_)
trace_string = ",";
else
- trace_string = "{\"" + std::string(kChromeTraceLabel) + "\":[";
+ trace_string = "{\"" + std::string(kChromeTraceLabelStr) + "\":[";
trace_string += chunk;
had_received_first_chunk_ = true;
« no previous file with comments | « content/browser/tracing/tracing_controller_impl.cc ('k') | content/browser/webrtc/webrtc_eventlog_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698