| Index: chrome/browser/tab_contents/tab_contents_view_gtk.h
|
| diff --git a/chrome/browser/tab_contents/tab_contents_view_gtk.h b/chrome/browser/tab_contents/tab_contents_view_gtk.h
|
| index 3aafee92cf75635faefa4b53c5549bf1079d5d1a..5a91659c94ecb90cc5c007f6f42445c6c7782038 100644
|
| --- a/chrome/browser/tab_contents/tab_contents_view_gtk.h
|
| +++ b/chrome/browser/tab_contents/tab_contents_view_gtk.h
|
| @@ -45,29 +45,29 @@ class TabContentsViewGtk : public TabContentsView,
|
|
|
| // TabContentsView implementation --------------------------------------------
|
|
|
| - virtual void CreateView(const gfx::Size& initial_size);
|
| + virtual void CreateView(const gfx::Size& initial_size) OVERRIDE;
|
| virtual RenderWidgetHostView* CreateViewForWidget(
|
| - RenderWidgetHost* render_widget_host);
|
| + RenderWidgetHost* render_widget_host) OVERRIDE;
|
|
|
| - virtual gfx::NativeView GetNativeView() const;
|
| - virtual gfx::NativeView GetContentNativeView() const;
|
| - virtual gfx::NativeWindow GetTopLevelNativeWindow() const;
|
| - virtual void GetContainerBounds(gfx::Rect* out) const;
|
| - virtual void SetPageTitle(const std::wstring& title);
|
| + virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
| + virtual gfx::NativeView GetContentNativeView() const OVERRIDE;
|
| + virtual gfx::NativeWindow GetTopLevelNativeWindow() const OVERRIDE;
|
| + virtual void GetContainerBounds(gfx::Rect* out) const OVERRIDE;
|
| + virtual void SetPageTitle(const std::wstring& title) OVERRIDE;
|
| virtual void OnTabCrashed(base::TerminationStatus status,
|
| - int error_code);
|
| - virtual void SizeContents(const gfx::Size& size);
|
| - virtual void RenderViewCreated(RenderViewHost* host);
|
| - virtual void Focus();
|
| - virtual void SetInitialFocus();
|
| - virtual void StoreFocus();
|
| - virtual void RestoreFocus();
|
| - virtual void UpdatePreferredSize(const gfx::Size& pref_size);
|
| - virtual bool IsDoingDrag() const;
|
| - virtual void CancelDragAndCloseTab();
|
| - virtual bool IsEventTracking() const;
|
| - virtual void CloseTabAfterEventTracking();
|
| - virtual void GetViewBounds(gfx::Rect* out) const;
|
| + int error_code) OVERRIDE;
|
| + virtual void SizeContents(const gfx::Size& size) OVERRIDE;
|
| + virtual void RenderViewCreated(RenderViewHost* host) OVERRIDE;
|
| + virtual void Focus() OVERRIDE;
|
| + virtual void SetInitialFocus() OVERRIDE;
|
| + virtual void StoreFocus() OVERRIDE;
|
| + virtual void RestoreFocus() OVERRIDE;
|
| + virtual void UpdatePreferredSize(const gfx::Size& pref_size) OVERRIDE;
|
| + virtual bool IsDoingDrag() const OVERRIDE;
|
| + virtual void CancelDragAndCloseTab() OVERRIDE;
|
| + virtual bool IsEventTracking() const OVERRIDE;
|
| + virtual void CloseTabAfterEventTracking() OVERRIDE;
|
| + virtual void GetViewBounds(gfx::Rect* out) const OVERRIDE;
|
|
|
| // Backend implementation of RenderViewHostDelegate::View.
|
| virtual void CreateNewWindow(
|
|
|