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

Side by Side Diff: chrome/browser/status_bubble.h

Issue 149156: Revert 19829. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/gtk/status_bubble_gtk.h ('k') | chrome/browser/views/status_bubble_views.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_STATUS_BUBBLE_H_ 5 #ifndef CHROME_BROWSER_STATUS_BUBBLE_H_
6 #define CHROME_BROWSER_STATUS_BUBBLE_H_ 6 #define CHROME_BROWSER_STATUS_BUBBLE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 class GURL; 10 class GURL;
(...skipping 26 matching lines...) Expand all
37 // Called when the user's mouse has moved over web content. This is used to 37 // Called when the user's mouse has moved over web content. This is used to
38 // determine when the status area should move out of the way of the user's 38 // determine when the status area should move out of the way of the user's
39 // mouse. This may be windows specific pain due to the way messages are 39 // mouse. This may be windows specific pain due to the way messages are
40 // processed for child HWNDs. 40 // processed for child HWNDs.
41 virtual void MouseMoved() = 0; 41 virtual void MouseMoved() = 0;
42 42
43 // Called when the download shelf becomes visible or invisible. 43 // Called when the download shelf becomes visible or invisible.
44 // This is used by to ensure that the status bubble does not obscure 44 // This is used by to ensure that the status bubble does not obscure
45 // the download shelf, when it is visible. 45 // the download shelf, when it is visible.
46 virtual void UpdateDownloadShelfVisibility(bool visible) = 0; 46 virtual void UpdateDownloadShelfVisibility(bool visible) = 0;
47
48 // Allow StatusView animation to set width of StatusBubble.
49 virtual void SetBubbleWidth(int width) = 0;
50 }; 47 };
51 48
52 #endif // #ifndef CHROME_BROWSER_STATUS_BUBBLE_H_ 49 #endif // #ifndef CHROME_BROWSER_STATUS_BUBBLE_H_
OLDNEW
« no previous file with comments | « chrome/browser/gtk/status_bubble_gtk.h ('k') | chrome/browser/views/status_bubble_views.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698