Index: chrome/browser/views/tabs/tab.h |
diff --git a/chrome/browser/views/tabs/tab.h b/chrome/browser/views/tabs/tab.h |
index e5ab9b992c972079c3d6e49c7ab75714fc9767c4..f7986186dac8c751c74f294435ffa71078e5f394 100644 |
--- a/chrome/browser/views/tabs/tab.h |
+++ b/chrome/browser/views/tabs/tab.h |
@@ -28,14 +28,6 @@ class Tab : public TabRenderer, |
explicit Tab(TabController* controller); |
virtual ~Tab(); |
- // Used to set/check whether this Tab is being animated closed. |
- void set_closing(bool closing) { closing_ = closing; } |
- bool closing() const { return closing_; } |
- |
- // See description above field. |
- void set_dragging(bool dragging) { dragging_ = dragging; } |
- bool dragging() const { return dragging_; } |
- |
// TabRenderer overrides: |
virtual bool IsSelected() const; |
@@ -64,12 +56,6 @@ class Tab : public TabRenderer, |
// representation. Used by GetViewForPoint for hit-testing. |
void MakePathForTab(gfx::Path* path) const; |
- // True if the tab is being animated closed. |
- bool closing_; |
- |
- // True if the tab is being dragged. |
- bool dragging_; |
- |
DISALLOW_COPY_AND_ASSIGN(Tab); |
}; |