| Index: Source/core/frame/Frame.h
|
| diff --git a/Source/core/frame/Frame.h b/Source/core/frame/Frame.h
|
| index 4a8be87fa4c3aab222d00119056a889b39ad5863..26fc878575bbf8f241f49c54c232d4ed95e2dca3 100644
|
| --- a/Source/core/frame/Frame.h
|
| +++ b/Source/core/frame/Frame.h
|
| @@ -48,7 +48,6 @@ class Page;
|
| class RenderPart;
|
| class SecurityContext;
|
| class Settings;
|
| -class WebLayer;
|
|
|
| class Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> {
|
| public:
|
| @@ -96,18 +95,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
|
| @@ -126,8 +115,6 @@ protected:
|
|
|
| private:
|
| FrameClient* m_client;
|
| - WebLayer* m_remotePlatformLayer;
|
| -
|
| bool m_isLoading;
|
| };
|
|
|
|
|