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

Unified Diff: chrome/browser/views/tabs/base_tab.h

Issue 2863003: Attempt 2 at: (Closed)
Patch Set: Created 10 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/views/tabs/base_tab.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/tabs/base_tab.h
diff --git a/chrome/browser/views/tabs/base_tab.h b/chrome/browser/views/tabs/base_tab.h
index e2ac34a5ba365793ad0458c99af190acd284945b..c0c9bde25d53b0f05ebf004d4b3141fec6b85cc1 100644
--- a/chrome/browser/views/tabs/base_tab.h
+++ b/chrome/browser/views/tabs/base_tab.h
@@ -32,7 +32,7 @@ class BaseTab : public AnimationDelegate,
public views::ContextMenuController,
public views::View {
public:
- explicit BaseTab(TabController* controller);
+ BaseTab(TabController* controller, bool show_mini_dot);
~BaseTab();
// Sets the data this tabs displays. Invokes DataChanged for subclasses to
@@ -71,6 +71,10 @@ class BaseTab : public AnimationDelegate,
theme_provider_ = provider;
}
+ // Invoked when the selected state changes. Resets the image of the close
+ // button.
+ void SelectedChanged();
+
// Returns true if the tab is selected.
virtual bool IsSelected() const;
@@ -104,7 +108,10 @@ class BaseTab : public AnimationDelegate,
return hover_animation_.get();
}
- views::ImageButton* close_button() const { return close_button_; }
+ views::ImageButton* close_button() const;
+
+ // Sets the color used to derive the close button images.
+ void SetCloseButtonColor(SkColor color);
// Paints the icon at the specified x-coordinate.
void PaintIcon(gfx::Canvas* canvas, int x, int y);
@@ -143,6 +150,7 @@ class BaseTab : public AnimationDelegate,
private:
// The animation object used to swap the favicon with the sad tab icon.
class FavIconCrashAnimation;
+ class TabCloseButton;
// Set the temporary offset for the favicon. This is used during the crash
// animation.
@@ -186,7 +194,7 @@ class BaseTab : public AnimationDelegate,
scoped_refptr<AnimationContainer> animation_container_;
- views::ImageButton* close_button_;
+ TabCloseButton* close_button_;
// The current index of the loading animation.
int loading_animation_frame_;
« no previous file with comments | « no previous file | chrome/browser/views/tabs/base_tab.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698