| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 956831386b133641428afd818ee075f0ba86cb72..392a6c26cc35c53071d1e89ab8d648fc9a151c4b 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -3578,8 +3578,9 @@ void WebContentsImpl::SetIsLoading(bool is_loading,
|
|
|
| std::string url = (details ? details->url.possibly_invalid_spec() : "NULL");
|
| if (is_loading) {
|
| - TRACE_EVENT_ASYNC_BEGIN1("browser,navigation", "WebContentsImpl Loading",
|
| - this, "URL", url);
|
| + TRACE_EVENT_ASYNC_BEGIN2("browser,navigation", "WebContentsImpl Loading",
|
| + this, "URL", url, "Main FrameTreeNode id",
|
| + GetFrameTree()->root()->frame_tree_node_id());
|
| FOR_EACH_OBSERVER(WebContentsObserver, observers_, DidStartLoading());
|
| } else {
|
| TRACE_EVENT_ASYNC_END1("browser,navigation", "WebContentsImpl Loading",
|
|
|