diff options
Diffstat (limited to 'content/browser/browser_plugin/browser_plugin_guest.h')
-rw-r--r-- | content/browser/browser_plugin/browser_plugin_guest.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content/browser/browser_plugin/browser_plugin_guest.h b/content/browser/browser_plugin/browser_plugin_guest.h index ffe8d56..74624ef 100644 --- a/content/browser/browser_plugin/browser_plugin_guest.h +++ b/content/browser/browser_plugin/browser_plugin_guest.h @@ -136,6 +136,7 @@ class CONTENT_EXPORT BrowserPluginGuest bool focused() const { return focused_; } bool visible() const { return guest_visible_; } void clear_damage_buffer() { damage_buffer_.reset(); } + bool is_in_destruction() { return is_in_destruction_; } BrowserPluginGuest* opener() const { return opener_.get(); } @@ -520,6 +521,8 @@ class CONTENT_EXPORT BrowserPluginGuest // Last seen autosize attribute state (by OnUpdateRect). bool last_seen_auto_size_enabled_; + bool is_in_destruction_; + // This is a queue of messages that are destined to be sent to the embedder // once the guest is attached to a particular embedder. std::queue<IPC::Message*> pending_messages_; |