diff options
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents_view.cc')
-rw-r--r-- | chrome/browser/tab_contents/tab_contents_view.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/chrome/browser/tab_contents/tab_contents_view.cc b/chrome/browser/tab_contents/tab_contents_view.cc index 402876d..78d084a 100644 --- a/chrome/browser/tab_contents/tab_contents_view.cc +++ b/chrome/browser/tab_contents/tab_contents_view.cc @@ -11,7 +11,8 @@ #include "chrome/browser/tab_contents/tab_contents_delegate.h" TabContentsView::TabContentsView(TabContents* tab_contents) - : tab_contents_(tab_contents) { + : tab_contents_(tab_contents), + preferred_width_(0) { } void TabContentsView::CreateView() { @@ -21,6 +22,14 @@ void TabContentsView::RenderWidgetHostDestroyed(RenderWidgetHost* host) { delegate_view_helper_.RenderWidgetHostDestroyed(host); } +void TabContentsView::RenderViewCreated(RenderViewHost* host) { + // Default implementation does nothing. Platforms may override. +} + +void TabContentsView::UpdatePreferredWidth(int pref_width) { + preferred_width_ = pref_width; +} + void TabContentsView::CreateNewWindow(int route_id, base::WaitableEvent* modal_dialog_event) { delegate_view_helper_.CreateNewWindow(route_id, modal_dialog_event, |