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

Unified Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 1447563002: Implement frame attribution (FrameBlamer) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup. Created 4 years, 9 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/Source/core/page/ChromeClient.h
diff --git a/third_party/WebKit/Source/core/page/ChromeClient.h b/third_party/WebKit/Source/core/page/ChromeClient.h
index ca795907a1f02e3a4d2d5104199c0d263c9185bb..7262e9d4d188eb18004616f9c3b304f92fb599ed 100644
--- a/third_party/WebKit/Source/core/page/ChromeClient.h
+++ b/third_party/WebKit/Source/core/page/ChromeClient.h
@@ -33,8 +33,10 @@
#include "platform/Cursor.h"
#include "platform/HostWindow.h"
#include "platform/PopupMenu.h"
+#include "platform/TraceEvent.h"
alex clarke (OOO till 29th) 2016/03/21 14:38:36 nit: is this needed?
Sami 2016/03/21 15:18:05 Good catch, removed.
#include "platform/heap/Handle.h"
#include "platform/scroll/ScrollTypes.h"
+#include "public/platform/BlameContext.h"
#include "public/platform/WebEventListenerProperties.h"
#include "public/platform/WebFocusType.h"
#include "wtf/Forward.h"
@@ -262,7 +264,7 @@ public:
// that this is comprehensive.
virtual void didObserveNonGetFetchFromScript() const {}
- virtual PassOwnPtr<WebFrameScheduler> createFrameScheduler() = 0;
+ virtual PassOwnPtr<WebFrameScheduler> createFrameScheduler(BlameContext*) = 0;
protected:
~ChromeClient() override { }

Powered by Google App Engine
This is Rietveld 408576698