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

Unified Diff: third_party/WebKit/public/web/WebFrameClient.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: third_party/WebKit/public/web/WebFrameClient.h
diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h
index e0578dc5fb4b828bc759731c50267e2ef041a896..00e831cf6f275b134edf8a4dd5b74c1c97df5967 100644
--- a/third_party/WebKit/public/web/WebFrameClient.h
+++ b/third_party/WebKit/public/web/WebFrameClient.h
@@ -63,6 +63,7 @@ enum class WebTreeScopeType;
class WebApplicationCacheHost;
class WebApplicationCacheHostClient;
class WebAppBannerClient;
+class WebBlameContext;
class WebBluetooth;
class WebColorChooser;
class WebColorChooserClient;
@@ -139,6 +140,8 @@ public:
// WebKitPlatformSupport::cookieJar() will be called to access cookies.
virtual WebCookieJar* cookieJar() { return 0; }
+ // Returns a blame context for attributing work belonging to this frame.
+ virtual WebBlameContext* frameBlameContext() { return nullptr; }
// General notifications -----------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698