diff options
author | erikkay@chromium.org <erikkay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-06 23:50:06 +0000 |
---|---|---|
committer | erikkay@chromium.org <erikkay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-06 23:50:06 +0000 |
commit | ab4707af48416b411021b27e67b67270f3caec10 (patch) | |
tree | d4866a942d81d3a77d606be5c9132bfc14f6d3b8 /chrome/browser/views/browser_bubble.h | |
parent | 7e5eb1cf0839ad0c6db1a3e1a682bdfd738783b9 (diff) | |
download | chromium_src-ab4707af48416b411021b27e67b67270f3caec10.zip chromium_src-ab4707af48416b411021b27e67b67270f3caec10.tar.gz chromium_src-ab4707af48416b411021b27e67b67270f3caec10.tar.bz2 |
Add an BubbleBorder to BrowserAction popups and fix positioning of the
popup.
BUG=23833,23835
TEST=none
Review URL: http://codereview.chromium.org/259065
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28187 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/browser_bubble.h')
-rw-r--r-- | chrome/browser/views/browser_bubble.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/views/browser_bubble.h b/chrome/browser/views/browser_bubble.h index 327d4fd..36accbd 100644 --- a/chrome/browser/views/browser_bubble.h +++ b/chrome/browser/views/browser_bubble.h @@ -88,17 +88,17 @@ class BrowserBubble { // Move the popup to an absolute position. void MovePopup(int x, int y, int w, int h); - private: + // The widget that this bubble is in. + views::Widget* popup_; + // The frame that this bubble is attached to. views::Widget* frame_; gfx::NativeView frame_native_view_; + private: // The view that is displayed in this bubble. views::View* view_; - // The widget that this bubble is in. - views::Widget* popup_; - // The bounds relative to the frame. gfx::Rect bounds_; |