| Index: Source/core/frame/Frame.h
|
| diff --git a/Source/core/frame/Frame.h b/Source/core/frame/Frame.h
|
| index 177deeed21926f464be856197f6917d7aace3172..b9dc1876165d77c504f723616ba7b570736df15c 100644
|
| --- a/Source/core/frame/Frame.h
|
| +++ b/Source/core/frame/Frame.h
|
| @@ -31,7 +31,6 @@
|
| #include "core/page/FrameTree.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Forward.h"
|
| -#include "wtf/HashSet.h"
|
| #include "wtf/RefCounted.h"
|
|
|
| namespace blink {
|
| @@ -42,7 +41,6 @@ namespace blink {
|
|
|
| class ChromeClient;
|
| class FrameClient;
|
| -class FrameDestructionObserver;
|
| class FrameHost;
|
| class FrameOwner;
|
| class HTMLFrameOwnerElement;
|
| @@ -58,12 +56,6 @@ public:
|
|
|
| virtual ~Frame();
|
|
|
| - void addDestructionObserver(FrameDestructionObserver*);
|
| - void removeDestructionObserver(FrameDestructionObserver*);
|
| -
|
| - virtual void willDetachFrameHost();
|
| - virtual void detachFromFrameHost();
|
| -
|
| FrameClient* client() const;
|
| void clearClient();
|
|
|
| @@ -115,8 +107,6 @@ protected:
|
|
|
| private:
|
| FrameClient* m_client;
|
| - HashSet<FrameDestructionObserver*> m_destructionObservers;
|
| -
|
| blink::WebLayer* m_remotePlatformLayer;
|
| };
|
|
|
|
|