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

Unified Diff: chrome/browser/views/frame/browser_extender.h

Issue 341008: CompactLocationBar (Closed)
Patch Set: comment updated Created 11 years, 2 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 | « chrome/browser/chromeos/compact_location_bar.cc ('k') | chrome/browser/views/frame/browser_extender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/frame/browser_extender.h
diff --git a/chrome/browser/views/frame/browser_extender.h b/chrome/browser/views/frame/browser_extender.h
index 094bd2d14ab48e51bd2176b86b951db30f423c61..106f5c986bf2f8351c732e328876bd2c6040e343 100644
--- a/chrome/browser/views/frame/browser_extender.h
+++ b/chrome/browser/views/frame/browser_extender.h
@@ -9,6 +9,7 @@
#include "base/gfx/rect.h"
class BrowserView;
+class Tab;
namespace views {
class Window;
@@ -58,6 +59,15 @@ class BrowserExtender {
// Toggles the visibility of CompactNavigationBar.
virtual void ToggleCompactNavigationBar() = 0;
+ // Called when a mouse entered into the |tab|.
+ virtual void OnMouseEnteredToTab(Tab* tab) = 0;
+
+ // Called when a mouse moved (hovered) on the |tab|.
+ virtual void OnMouseMovedOnTab(Tab* tab) = 0;
+
+ // Called when a mouse exited from the |tab|.
+ virtual void OnMouseExitedFromTab(Tab* tab) = 0;
+
// Tells if the browser can be closed.
bool can_close() const {
return can_close_;
« no previous file with comments | « chrome/browser/chromeos/compact_location_bar.cc ('k') | chrome/browser/views/frame/browser_extender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698