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

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

Issue 1908373003: Rename EtwSystemEventConsumerWin to EtwTracingAgent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/etw_tracing_agent_win.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/tracing/tracing_controller_impl.cc
diff --git a/content/browser/tracing/tracing_controller_impl.cc b/content/browser/tracing/tracing_controller_impl.cc
index aba7a7546dc97f9f0d66627a830e52cb316d8555..9bfe5e958cb2e02c6fd711b168ee258046b7d7a5 100644
--- a/content/browser/tracing/tracing_controller_impl.cc
+++ b/content/browser/tracing/tracing_controller_impl.cc
@@ -46,7 +46,7 @@
#endif
#if defined(OS_WIN)
-#include "content/browser/tracing/etw_system_event_consumer_win.h"
+#include "content/browser/tracing/etw_tracing_agent_win.h"
#endif
using base::trace_event::TraceLog;
@@ -279,7 +279,7 @@ bool TracingControllerImpl::StartTracing(
++pending_start_tracing_ack_count_;
}
#elif defined(OS_WIN)
- EtwSystemEventConsumer::GetInstance()->StartAgentTracing(
+ EtwTracingAgent::GetInstance()->StartAgentTracing(
trace_config,
base::Bind(&TracingControllerImpl::OnStartAgentTracingAcked,
base::Unretained(this)));
@@ -586,7 +586,7 @@ void TracingControllerImpl::AddTracingAgent(const std::string& agent_name) {
return;
}
#elif defined(OS_WIN)
- auto etw_agent = EtwSystemEventConsumer::GetInstance();
+ auto etw_agent = EtwTracingAgent::GetInstance();
if (agent_name == etw_agent->GetTracingAgentName()) {
additional_tracing_agents_.push_back(etw_agent);
return;
« no previous file with comments | « content/browser/tracing/etw_tracing_agent_win.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698