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

Side by Side Diff: content/renderer/frame_blame_context.cc

Issue 1447563002: Implement frame attribution (FrameBlamer) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make sure blame context is initialized early enough 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 unified diff | Download patch
« no previous file with comments | « content/renderer/frame_blame_context.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/renderer/frame_blame_context.h"
6
7 #include "base/trace_event/trace_event_argument.h"
8 #include "content/renderer/render_frame_impl.h"
9 #include "content/renderer/top_level_blame_context.h"
10 #include "third_party/WebKit/public/platform/Platform.h"
11 #include "third_party/WebKit/public/web/WebLocalFrame.h"
12
13 namespace content {
14 namespace {
15
16 base::trace_event::BlameContext* GetParentBlameContext(
17 RenderFrameImpl* parent_frame) {
18 if (parent_frame)
19 return parent_frame->frameBlameContext();
20 return blink::Platform::current()->topLevelBlameContext();
21 }
22
23 } // namespace
24
25 const char kFrameBlameContextCategory[] = "blink";
26 const char kFrameBlameContextName[] = "FrameBlameContext";
27 const char kFrameBlameContextType[] = "Frame";
28 const char kFrameBlameContextScope[] = "RenderFrame";
29
30 FrameBlameContext::FrameBlameContext(RenderFrameImpl* render_frame,
31 RenderFrameImpl* parent_frame)
32 : base::trace_event::BlameContext(kFrameBlameContextCategory,
33 kFrameBlameContextName,
34 kFrameBlameContextType,
35 kFrameBlameContextScope,
36 render_frame->GetRoutingID(),
37 GetParentBlameContext(parent_frame)) {}
38
39 FrameBlameContext::~FrameBlameContext() {}
40
41 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/frame_blame_context.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698