diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 10:00:57 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 10:00:57 +0000 |
commit | ce29eeeb501db818f8f91158fd0f740a9673db61 (patch) | |
tree | 482be176eebfa02b76b775efc7122a4785fadac4 /chrome/browser/gtk/bookmark_bubble_gtk.h | |
parent | e918f175a6293932fc4c682108cf3c9945671f60 (diff) | |
download | chromium_src-ce29eeeb501db818f8f91158fd0f740a9673db61.zip chromium_src-ce29eeeb501db818f8f91158fd0f740a9673db61.tar.gz chromium_src-ce29eeeb501db818f8f91158fd0f740a9673db61.tar.bz2 |
Implement the base for the BookmarkBubble UI.
Additionally set the transient on the InfoBubble dialog window.
BUG=11738
Review URL: http://codereview.chromium.org/119042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17472 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/bookmark_bubble_gtk.h')
-rw-r--r-- | chrome/browser/gtk/bookmark_bubble_gtk.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/gtk/bookmark_bubble_gtk.h b/chrome/browser/gtk/bookmark_bubble_gtk.h index 123ff81..5192413 100644 --- a/chrome/browser/gtk/bookmark_bubble_gtk.h +++ b/chrome/browser/gtk/bookmark_bubble_gtk.h @@ -26,7 +26,8 @@ class Rect; class BookmarkBubbleGtk : public InfoBubbleGtkDelegate { public: // Shows the bookmark bubble, pointing at |rect|. - static void Show(const gfx::Rect& rect, + static void Show(GtkWindow* transient_toplevel, + const gfx::Rect& rect, Profile* profile, const GURL& url, bool newly_bookmarked); @@ -38,7 +39,8 @@ class BookmarkBubbleGtk : public InfoBubbleGtkDelegate { bool closed_by_escape); private: - BookmarkBubbleGtk(const gfx::Rect& rect, + BookmarkBubbleGtk(GtkWindow* transient_toplevel, + const gfx::Rect& rect, Profile* profile, const GURL& url, bool newly_bookmarked); |