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

Unified Diff: content/renderer/web_blame_context_impl.cc

Issue 1447563002: Implement frame attribution (FrameBlamer) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup. Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/web_blame_context_impl.cc
diff --git a/content/renderer/web_blame_context_impl.cc b/content/renderer/web_blame_context_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1eb7a11b365322eb39f190854d7e04fbe25a1d60
--- /dev/null
+++ b/content/renderer/web_blame_context_impl.cc
@@ -0,0 +1,22 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/renderer/web_blame_context_impl.h"
+
+#include "base/debug/blame_context.h"
+
+namespace content {
+
+WebBlameContextImpl::WebBlameContextImpl(base::debug::BlameContextBase* context)
+ : context_(context) {}
+
+void WebBlameContextImpl::enter() {
+ context_->Enter();
+}
+
+void WebBlameContextImpl::leave() {
+ context_->Leave();
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698