| Index: chrome/browser/ui/touch/tabs/touch_tab.h | 
| diff --git a/chrome/browser/ui/touch/tabs/touch_tab.h b/chrome/browser/ui/touch/tabs/touch_tab.h | 
| index 923ebd9f323bd36c3cd1be528b0cc88499cc7657..b4ff409ed756abae2066c2952e6425e6a214d2d6 100644 | 
| --- a/chrome/browser/ui/touch/tabs/touch_tab.h | 
| +++ b/chrome/browser/ui/touch/tabs/touch_tab.h | 
| @@ -18,6 +18,7 @@ | 
| // | 
| //  A View that renders a TouchTab in a TouchTabStrip | 
| // | 
| +// TODO(wyck): Use transformable views for scrolling. | 
| /////////////////////////////////////////////////////////////////////////////// | 
| class TouchTab : public BaseTab { | 
| public: | 
| @@ -42,6 +43,9 @@ class TouchTab : public BaseTab { | 
|  | 
| private: | 
| // Overridden from views::View: | 
| +  virtual bool OnMousePressed(const views::MouseEvent& event) OVERRIDE; | 
| +  virtual bool OnMouseDragged(const views::MouseEvent& event) OVERRIDE; | 
| +  virtual void OnMouseReleased(const views::MouseEvent& event) OVERRIDE; | 
| virtual void OnPaint(gfx::Canvas* canvas); | 
| virtual void Layout(); | 
| virtual bool HasHitTestMask() const; | 
|  |