Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(827)

Unified Diff: chrome/browser/ui/views/tabs/base_tab.cc

Issue 6622002: Do all OOLing in the views code. linux_views now builds clean with the clang plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/tabs/base_tab.cc
diff --git a/chrome/browser/ui/views/tabs/base_tab.cc b/chrome/browser/ui/views/tabs/base_tab.cc
index 9c99e47190308d866b48c439680c433c868a3cc4..ba78d82b64e4c51ae6a11241ea365409b48d6358 100644
--- a/chrome/browser/ui/views/tabs/base_tab.cc
+++ b/chrome/browser/ui/views/tabs/base_tab.cc
@@ -480,6 +480,18 @@ void BaseTab::ShowContextMenu(views::View* source,
controller()->ShowContextMenu(this, p);
}
+int BaseTab::loading_animation_frame() const {
+ return loading_animation_frame_;
+}
+
+bool BaseTab::should_display_crashed_favicon() const {
+ return should_display_crashed_favicon_;
+}
+
+int BaseTab::fav_icon_hiding_offset() const {
+ return fav_icon_hiding_offset_;
+}
+
void BaseTab::SetFavIconHidingOffset(int offset) {
fav_icon_hiding_offset_ = offset;
ScheduleIconPaint();

Powered by Google App Engine
This is Rietveld 408576698