summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/tab_contents/tab_contents_view_gtk.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/tab_contents/tab_contents_view_gtk.cc b/chrome/browser/tab_contents/tab_contents_view_gtk.cc
index 1ccc202..25d9e2c 100644
--- a/chrome/browser/tab_contents/tab_contents_view_gtk.cc
+++ b/chrome/browser/tab_contents/tab_contents_view_gtk.cc
@@ -97,7 +97,8 @@ TabContentsViewGtk::~TabContentsViewGtk() {
}
void TabContentsViewGtk::CreateView() {
- NOTIMPLEMENTED();
+ // Windows uses this to do initialization, but we do all our initialization
+ // in the constructor.
}
RenderWidgetHostView* TabContentsViewGtk::CreateViewForWidget(
@@ -178,7 +179,8 @@ void TabContentsViewGtk::Invalidate() {
}
void TabContentsViewGtk::SizeContents(const gfx::Size& size) {
- NOTIMPLEMENTED();
+ // This function is a hack and should go away. In any case we don't manually
+ // control the size of the contents on linux, so do nothing.
}
void TabContentsViewGtk::FindInPage(const Browser& browser,