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

Unified Diff: third_party/WebKit/Source/core/frame/FrameOrPlugin.h

Issue 2871453002: Delete widget tree (FrameView::parent_) (Closed)
Patch Set: Remove deferred state Created 3 years, 7 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 | third_party/WebKit/Source/core/frame/FrameView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/FrameOrPlugin.h
diff --git a/third_party/WebKit/Source/core/frame/FrameOrPlugin.h b/third_party/WebKit/Source/core/frame/FrameOrPlugin.h
index d9f398a40712bd5818981045dce6223663f79c2f..6684503969a007f4952d9c027853549752f50a6b 100644
--- a/third_party/WebKit/Source/core/frame/FrameOrPlugin.h
+++ b/third_party/WebKit/Source/core/frame/FrameOrPlugin.h
@@ -26,6 +26,9 @@ class CORE_EXPORT FrameOrPlugin : public GarbageCollectedMixin {
virtual void SetParent(FrameView*) = 0;
virtual FrameView* Parent() const = 0;
+ enum FrameOrPluginState { kNotAttached, kAttached, kDeferred, kDisposed };
+ virtual void SetFrameOrPluginState(FrameOrPluginState) = 0;
+ virtual FrameOrPluginState GetFrameOrPluginState() const = 0;
virtual void SetParentVisible(bool) = 0;
virtual void SetFrameRect(const IntRect&) = 0;
virtual void FrameRectsChanged() = 0;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/FrameView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698