Index: chrome/browser/ui/views/tab_contents/native_tab_contents_container.h |
diff --git a/chrome/browser/ui/views/tab_contents/native_tab_contents_container.h b/chrome/browser/ui/views/tab_contents/native_tab_contents_container.h |
index bca954d3dc22e0240bd9c29260493179e9e4d85b..24808e2939c5db26ebec9ab2dd034b2f51ae37a0 100644 |
--- a/chrome/browser/ui/views/tab_contents/native_tab_contents_container.h |
+++ b/chrome/browser/ui/views/tab_contents/native_tab_contents_container.h |
@@ -30,6 +30,10 @@ class NativeTabContentsContainer { |
// Tells the container to update less frequently during resizing operations |
// so performance is better. |
virtual void SetFastResize(bool fast_resize) = 0; |
+ virtual bool GetFastResize() const = 0; |
+ |
+ // Returns the value of GetFastResize() the last time layout occurred. |
+ virtual bool FastResizeAtLastLayout() const = 0; |
// Tells the container that the RenderViewHost for the attached TabContents |
// has changed and it should update focus. |
@@ -41,6 +45,7 @@ class NativeTabContentsContainer { |
// Retrieves the views::View that hosts the TabContents. |
virtual views::View* GetView() = 0; |
+ |
protected: |
virtual ~NativeTabContentsContainer() {} |
}; |