summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents
diff options
context:
space:
mode:
authorestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-18 21:21:19 +0000
committerestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-18 21:21:19 +0000
commit0cecb4219d2db9d317a13c26467dee8e975feb32 (patch)
treee180e490bf71628e8bf16a1ac9fe76c4e0e06173 /chrome/browser/tab_contents
parentd5d7b80087325be004284b7a77d0384f79093798 (diff)
downloadchromium_src-0cecb4219d2db9d317a13c26467dee8e975feb32.zip
chromium_src-0cecb4219d2db9d317a13c26467dee8e975feb32.tar.gz
chromium_src-0cecb4219d2db9d317a13c26467dee8e975feb32.tar.bz2
More NOTIMPLEMENTED() swatting.
http://crbug.com/12052 Review URL: http://codereview.chromium.org/113544 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16322 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents')
-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,