summaryrefslogtreecommitdiffstats
path: root/content/ppapi_plugin
diff options
context:
space:
mode:
authorssid <ssid@chromium.org>2015-02-09 08:02:20 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-09 16:03:13 +0000
commitb2e3ececdfdc5ce1037d1bb648a7ff0f1d38f508 (patch)
tree098f6c0ae836aaed55cdf92b1a9ff5358779746a /content/ppapi_plugin
parentfe2e3e76fe7842c9cdcf5c3aaa62081a564c42a2 (diff)
downloadchromium_src-b2e3ececdfdc5ce1037d1bb648a7ff0f1d38f508.zip
chromium_src-b2e3ececdfdc5ce1037d1bb648a7ff0f1d38f508.tar.gz
chromium_src-b2e3ececdfdc5ce1037d1bb648a7ff0f1d38f508.tar.bz2
Mechanical rename of base::debug -> base::trace_event for /content
This is the last stage of the trace_event directory restructuring. This is part of a set of 3 CLs which is moving tracing clients to use the new base::trace_event namespace. See crrev.com/837303004 and the related bug for motivations. BUG=451032 TBR=jam@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/892213004 Cr-Commit-Position: refs/heads/master@{#315310}
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r--content/ppapi_plugin/ppapi_broker_main.cc5
-rw-r--r--content/ppapi_plugin/ppapi_plugin_main.cc4
2 files changed, 5 insertions, 4 deletions
diff --git a/content/ppapi_plugin/ppapi_broker_main.cc b/content/ppapi_plugin/ppapi_broker_main.cc
index 0178bf1..b441d7a 100644
--- a/content/ppapi_plugin/ppapi_broker_main.cc
+++ b/content/ppapi_plugin/ppapi_broker_main.cc
@@ -22,8 +22,9 @@ int PpapiBrokerMain(const MainFunctionParams& parameters) {
base::MessageLoop main_message_loop;
base::PlatformThread::SetName("CrPPAPIBrokerMain");
- base::debug::TraceLog::GetInstance()->SetProcessName("PPAPI Broker Process");
- base::debug::TraceLog::GetInstance()->SetProcessSortIndex(
+ base::trace_event::TraceLog::GetInstance()->SetProcessName(
+ "PPAPI Broker Process");
+ base::trace_event::TraceLog::GetInstance()->SetProcessSortIndex(
kTraceEventPpapiBrokerProcessSortIndex);
ChildProcess ppapi_broker_process;
diff --git a/content/ppapi_plugin/ppapi_plugin_main.cc b/content/ppapi_plugin/ppapi_plugin_main.cc
index 065c6f2..6c80f03 100644
--- a/content/ppapi_plugin/ppapi_plugin_main.cc
+++ b/content/ppapi_plugin/ppapi_plugin_main.cc
@@ -111,8 +111,8 @@ int PpapiPluginMain(const MainFunctionParams& parameters) {
base::MessageLoop main_message_loop;
base::PlatformThread::SetName("CrPPAPIMain");
- base::debug::TraceLog::GetInstance()->SetProcessName("PPAPI Process");
- base::debug::TraceLog::GetInstance()->SetProcessSortIndex(
+ base::trace_event::TraceLog::GetInstance()->SetProcessName("PPAPI Process");
+ base::trace_event::TraceLog::GetInstance()->SetProcessSortIndex(
kTraceEventPpapiProcessSortIndex);
#if defined(OS_LINUX) && defined(USE_NSS)