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

Unified Diff: chrome/browser/ui/views/tabs/tab_strip.h

Issue 7033048: Multi-tab: Adding new Notification when tab selection changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing comments Created 9 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
Index: chrome/browser/ui/views/tabs/tab_strip.h
diff --git a/chrome/browser/ui/views/tabs/tab_strip.h b/chrome/browser/ui/views/tabs/tab_strip.h
index b8feec148a5d99bedc25ff2366c4c35691b1dd5f..c0532252fcaaab5b252a4ba3fe3df9a1666dffa1 100644
--- a/chrome/browser/ui/views/tabs/tab_strip.h
+++ b/chrome/browser/ui/views/tabs/tab_strip.h
@@ -16,6 +16,7 @@
#include "views/mouse_watcher.h"
class Tab;
+class TabStripSelectionModel;
namespace views {
class ImageView;
@@ -57,7 +58,9 @@ class TabStrip : public BaseTabStrip,
// BaseTabStrip implementation:
virtual void PrepareForCloseAt(int model_index) OVERRIDE;
virtual void RemoveTabAt(int model_index) OVERRIDE;
- virtual void SelectTabAt(int old_model_index, int new_model_index) OVERRIDE;
+ virtual void SetSelection(
+ const TabStripSelectionModel& old_selection,
+ const TabStripSelectionModel& new_selection) OVERRIDE;
virtual void TabTitleChangedNotLoading(int model_index) OVERRIDE;
virtual void StartHighlight(int model_index) OVERRIDE;
virtual void StopAllHighlighting() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698