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

Unified Diff: chrome/browser/views/browser_bubble.h

Issue 159202: add mole info to toolstrip definition and enable moles (Closed)
Patch Set: ready for review Created 11 years, 5 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/views/browser_bubble.h
diff --git a/chrome/browser/views/browser_bubble.h b/chrome/browser/views/browser_bubble.h
index 13317f55fbbf655eddb1b9134a44a9188801c1a0..03e9377448b86eddd32a077f5c7eebec68c8a4a6 100644
--- a/chrome/browser/views/browser_bubble.h
+++ b/chrome/browser/views/browser_bubble.h
@@ -20,7 +20,10 @@ class BrowserBubble {
public:
// Called when the Browser Window that this bubble is attached to moves.
virtual void BubbleBrowserWindowMoved(BrowserBubble* bubble) = 0;
- virtual void BubbleBrowserWindowClosed(BrowserBubble* bubble) = 0;
+
+ // Called with the Browser Window that this bubble is attached to is
+ // about to close.
+ virtual void BubbleBrowserWindowClosing(BrowserBubble* bubble) = 0;
};
// Note that the bubble will size itself to the preferred size of |view|.
@@ -48,7 +51,7 @@ class BrowserBubble {
// Notifications from BrowserView.
// With no delegate, both of these default to Hiding the bubble.
virtual void BrowserWindowMoved();
- virtual void BrowserWindowClosed();
+ virtual void BrowserWindowClosing();
// Show or hide the bubble.
void Show();

Powered by Google App Engine
This is Rietveld 408576698