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

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

Issue 842033003: Cleanup RemotePlatformLayer when disconnecting RemoteFrame. (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
« no previous file with comments | « no previous file | 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 93e0236cd73ee3116d1347840e92e79b0b9dfd05..e6289176fa28bd3d3b189544f03cf672721fee44 100644
--- a/Source/core/frame/Frame.h
+++ b/Source/core/frame/Frame.h
@@ -49,7 +49,6 @@ class Page;
class RenderPart;
class SecurityContext;
class Settings;
-class WebLayer;
class WindowProxy;
class Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> {
@@ -99,18 +98,8 @@ public:
RenderPart* ownerRenderer() const; // Renderer for the element that contains this frame.
- // FIXME: These should move to RemoteFrame when that is instantiated.
- void setRemotePlatformLayer(WebLayer*);
- WebLayer* remotePlatformLayer() const { return m_remotePlatformLayer; }
-
Settings* settings() const; // can be null
- // FIXME: This method identifies a LocalFrame that is acting as a RemoteFrame.
- // It is necessary only until we can instantiate a RemoteFrame, at which point
- // it can be removed and its callers can be converted to use the isRemoteFrame()
- // method.
- bool isRemoteFrameTemporary() const { return m_remotePlatformLayer; }
-
// isLoading() is true when the embedder should think a load is in progress.
// In the case of LocalFrames, it means that the frame has sent a didStartLoading()
// callback, but not the matching didStopLoading(). Inside blink, you probably
@@ -129,8 +118,6 @@ protected:
private:
FrameClient* m_client;
- WebLayer* m_remotePlatformLayer;
-
bool m_isLoading;
};
« no previous file with comments | « no previous file | Source/core/frame/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698