summaryrefslogtreecommitdiff
path: root/chromium/content/browser/browser_plugin/browser_plugin_guest.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/browser_plugin/browser_plugin_guest.h')
-rw-r--r--chromium/content/browser/browser_plugin/browser_plugin_guest.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/chromium/content/browser/browser_plugin/browser_plugin_guest.h b/chromium/content/browser/browser_plugin/browser_plugin_guest.h
index ffe8d566145..6098cacca38 100644
--- a/chromium/content/browser/browser_plugin/browser_plugin_guest.h
+++ b/chromium/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(); }
@@ -515,10 +516,7 @@ class CONTENT_EXPORT BrowserPluginGuest
// this guest is attached.
bool has_render_view_;
- // Last seen size of guest contents (by OnUpdateRect).
- gfx::Size last_seen_view_size_;
- // 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.