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

Unified Diff: content/renderer/web_blame_context_impl.h

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.h
diff --git a/content/renderer/web_blame_context_impl.h b/content/renderer/web_blame_context_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..d5dbf21d3b47460b5b043185fe901bb15463165a
--- /dev/null
+++ b/content/renderer/web_blame_context_impl.h
@@ -0,0 +1,35 @@
+// 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.
+
+#ifndef CONTENT_RENDERER_WEB_BLAME_CONTEXT_IMPL_H_
+#define CONTENT_RENDERER_WEB_BLAME_CONTEXT_IMPL_H_
+
+#include "base/macros.h"
+#include "third_party/WebKit/public/platform/WebBlameContext.h"
+
+namespace base {
+namespace debug {
+class BlameContextBase;
+}
+}
+
+namespace content {
+
+class WebBlameContextImpl : public blink::WebBlameContext {
+ public:
+ WebBlameContextImpl(base::debug::BlameContextBase* context);
+
+ // blink::WebBlameContext implementation:
+ void enter() override;
+ void leave() override;
+
+ private:
+ base::debug::BlameContextBase* context_; // Not owned.
+
+ DISALLOW_COPY_AND_ASSIGN(WebBlameContextImpl);
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_WEB_BLAME_CONTEXT_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698