Commit 8b42577f authored by danakj's avatar danakj Committed by Commit bot

Move LayerTreeHostImpl::SetVisible trace to "cc" from "webkit".

Long live cc.

R=enne, vmpstr

Review URL: https://codereview.chromium.org/897873005

Cr-Commit-Position: refs/heads/master@{#314684}
parent 62e2fc7f
...@@ -119,15 +119,12 @@ class ViewportAnchor { ...@@ -119,15 +119,12 @@ class ViewportAnchor {
void DidVisibilityChange(LayerTreeHostImpl* id, bool visible) { void DidVisibilityChange(LayerTreeHostImpl* id, bool visible) {
if (visible) { if (visible) {
TRACE_EVENT_ASYNC_BEGIN1("webkit", TRACE_EVENT_ASYNC_BEGIN1("cc", "LayerTreeHostImpl::SetVisible", id,
"LayerTreeHostImpl::SetVisible", "LayerTreeHostImpl", id);
id,
"LayerTreeHostImpl",
id);
return; return;
} }
TRACE_EVENT_ASYNC_END0("webkit", "LayerTreeHostImpl::SetVisible", id); TRACE_EVENT_ASYNC_END0("cc", "LayerTreeHostImpl::SetVisible", id);
} }
size_t GetMaxTransferBufferUsageBytes( size_t GetMaxTransferBufferUsageBytes(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment