diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 23:15:53 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 23:15:53 +0000 |
commit | 164606478faaa606df0c3d2637c4c0a476a59414 (patch) | |
tree | 2fd9491713efb56e15883848237f83c119c68a69 /chrome/browser/ui/views/tabs/base_tab.h | |
parent | 039c7b0b28a2501bf4f305ec9e21dbb7518e52cc (diff) | |
download | chromium_src-164606478faaa606df0c3d2637c4c0a476a59414.zip chromium_src-164606478faaa606df0c3d2637c4c0a476a59414.tar.gz chromium_src-164606478faaa606df0c3d2637c4c0a476a59414.tar.bz2 |
Do all OOLing in the views code. linux_views now builds clean with the clang plugin.
BUG=carnitas
TEST=compiles
Review URL: http://codereview.chromium.org/6622002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76992 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/views/tabs/base_tab.h')
-rw-r--r-- | chrome/browser/ui/views/tabs/base_tab.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/chrome/browser/ui/views/tabs/base_tab.h b/chrome/browser/ui/views/tabs/base_tab.h index f51eab9..7767df3e 100644 --- a/chrome/browser/ui/views/tabs/base_tab.h +++ b/chrome/browser/ui/views/tabs/base_tab.h @@ -136,13 +136,9 @@ class BaseTab : public ui::AnimationDelegate, virtual const gfx::Rect& GetTitleBounds() const = 0; virtual const gfx::Rect& GetIconBounds() const = 0; - virtual int loading_animation_frame() const { - return loading_animation_frame_; - } - virtual bool should_display_crashed_favicon() const { - return should_display_crashed_favicon_; - } - virtual int fav_icon_hiding_offset() const { return fav_icon_hiding_offset_; } + virtual int loading_animation_frame() const; + virtual bool should_display_crashed_favicon() const; + virtual int fav_icon_hiding_offset() const; static gfx::Font* font() { return font_; } static int font_height() { return font_height_; } |