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

Unified Diff: content/renderer/renderer_blink_platform_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/renderer_blink_platform_impl.h
diff --git a/content/renderer/renderer_blink_platform_impl.h b/content/renderer/renderer_blink_platform_impl.h
index c054ee4758cf4ad3c79bd7720780f29409a573c6..bb6a12e7d56a6a0b9169e1d7511b3705f3f89df3 100644
--- a/content/renderer/renderer_blink_platform_impl.h
+++ b/content/renderer/renderer_blink_platform_impl.h
@@ -57,6 +57,7 @@ class QuotaMessageFilter;
class RendererClipboardDelegate;
class RenderView;
class ThreadSafeSender;
+class WebBlameContextImpl;
class WebClipboardImpl;
class WebDatabaseObserverImpl;
class WebFileSystemImpl;
@@ -187,6 +188,7 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl {
void vibrate(unsigned int milliseconds) override;
void cancelVibration() override;
blink::WebThread* currentThread() override;
+ blink::WebBlameContext* threadBlameContext() override;
void recordRappor(const char* metric,
const blink::WebString& sample) override;
void recordRapporURL(const char* metric, const blink::WebURL& url) override;
@@ -295,6 +297,8 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl {
TrialTokenValidator trial_token_validator_;
+ scoped_ptr<WebBlameContextImpl> web_blame_context_;
+
DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
};

Powered by Google App Engine
This is Rietveld 408576698