Index: chrome/browser/ui/views/tab_contents/tab_contents_container_views.cc |
diff --git a/chrome/browser/ui/views/tab_contents/tab_contents_container_views.cc b/chrome/browser/ui/views/tab_contents/tab_contents_container_views.cc |
index 5ff8a5dac2fed2caa445721a58d652b48ce8893e..097d4fd5e040b23777a6eab20dd50816bfd902d3 100644 |
--- a/chrome/browser/ui/views/tab_contents/tab_contents_container_views.cc |
+++ b/chrome/browser/ui/views/tab_contents/tab_contents_container_views.cc |
@@ -28,6 +28,13 @@ TabContentsContainer::TabContentsContainer() |
SetID(VIEW_ID_TAB_CONTAINER); |
} |
+void TabContentsContainer::SetReservedContentsRect( |
+ const gfx::Rect& reserved_rect) { |
+ cached_reserved_rect_ = reserved_rect; |
+ // TODO(anicolao): find out what this is supposed to be used for and ensure |
+ // it's OK for touch. |
+} |
+ |
void TabContentsContainer::ChangeTabContents(TabContents* contents) { |
if (tab_contents_) { |
views::View *v = static_cast<TabContentsViewViews*>(tab_contents_->view()); |