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

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

Issue 427673008: Move FrameDestructionObserver into LocalFrame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 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;
};
« 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