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

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

Issue 390193003: [not for review] Add Draw entries to window Performance Timeline (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Git pull syncup Created 6 years, 3 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
« no previous file with comments | « Source/core/events/EventTypeNames.in ('k') | Source/core/frame/Frame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Frame.h
diff --git a/Source/core/frame/Frame.h b/Source/core/frame/Frame.h
index 498cb77c81bfd740d26d1fdc0c02b6131f656796..89c8672d3dcacb7c0b2a7f804b16ecb32e1b2e71 100644
--- a/Source/core/frame/Frame.h
+++ b/Source/core/frame/Frame.h
@@ -86,6 +86,8 @@ public:
RenderPart* ownerRenderer() const; // Renderer for the element that contains this frame.
+ int64_t frameID() const { return m_frameID; }
+
// FIXME: These should move to RemoteFrame when that is instantiated.
void setRemotePlatformLayer(blink::WebLayer*);
blink::WebLayer* remotePlatformLayer() const { return m_remotePlatformLayer; }
@@ -110,6 +112,10 @@ protected:
private:
FrameClient* m_client;
+
+ // Temporary hack for history.
+ int64_t m_frameID;
+
blink::WebLayer* m_remotePlatformLayer;
};
« no previous file with comments | « Source/core/events/EventTypeNames.in ('k') | Source/core/frame/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698