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; |
}; |