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

Unified Diff: Source/core/frame/Frame.h

Issue 908453003: Blink changes to record interest rects for http://w3c.github.io/frame-timing/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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: Source/core/frame/Frame.h
diff --git a/Source/core/frame/Frame.h b/Source/core/frame/Frame.h
index 93e0236cd73ee3116d1347840e92e79b0b9dfd05..45db096df796ac035dfca466de19bb17d8f95560 100644
--- a/Source/core/frame/Frame.h
+++ b/Source/core/frame/Frame.h
@@ -99,6 +99,8 @@ public:
RenderPart* ownerRenderer() const; // Renderer for the element that contains this frame.
+ int64_t frameID() const { return m_frameID; }
MikeB 2015/02/06 17:41:31 This was removed in https://codereview.chromium.or
+
// FIXME: These should move to RemoteFrame when that is instantiated.
void setRemotePlatformLayer(WebLayer*);
WebLayer* remotePlatformLayer() const { return m_remotePlatformLayer; }
@@ -129,6 +131,8 @@ protected:
private:
FrameClient* m_client;
+ // Needed to identify Frame Timing requests.
+ int64_t m_frameID;
WebLayer* m_remotePlatformLayer;
bool m_isLoading;

Powered by Google App Engine
This is Rietveld 408576698