diff options
author | yurys <yurys@chromium.org> | 2014-09-15 11:56:57 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-15 18:59:26 +0000 |
commit | d10b46af79743ec6afc3256972d7fa5ec26085c3 (patch) | |
tree | e4913056566255a533669268cfbb2bbb534ea324 /content/common | |
parent | 9dacfe60ac1169351b912e71d2236585a77d21de (diff) | |
download | chromium_src-d10b46af79743ec6afc3256972d7fa5ec26085c3.zip chromium_src-d10b46af79743ec6afc3256972d7fa5ec26085c3.tar.gz chromium_src-d10b46af79743ec6afc3256972d7fa5ec26085c3.tar.bz2 |
DevTools: disallow to start stop tracing using console.timeline/timelineEnd
We are going deprecate console.timeline/timelineEnd. As the first step they will result only in time/timeEnd events and won't start/stop tracing. This change removes the code that allows to change browser wide tracing recording from the render process, it mostly reverts part of r292578.
BUG=412782
TBR=dcheng
Review URL: https://codereview.chromium.org/569153004
Cr-Commit-Position: refs/heads/master@{#294860}
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/devtools_messages.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/content/common/devtools_messages.h b/content/common/devtools_messages.h index 151d88f..3e14864 100644 --- a/content/common/devtools_messages.h +++ b/content/common/devtools_messages.h @@ -114,13 +114,6 @@ IPC_MESSAGE_ROUTED1(DevToolsHostMsg_DispatchOnEmbedder, IPC_MESSAGE_ROUTED1(DevToolsHostMsg_SaveAgentRuntimeState, std::string /* state */) -// Tells the host to enable trace event recording. -IPC_MESSAGE_ROUTED1(DevToolsHostMsg_EnableTracing, - std::string /* category_filter */) - -// Tells the host to disable trace event recording. -IPC_MESSAGE_ROUTED0(DevToolsHostMsg_DisableTracing) - //----------------------------------------------------------------------------- // These are messages sent from the GPU process to the inspected renderer. |