diff options
author | suzhe@chromium.org <suzhe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-15 08:20:19 +0000 |
---|---|---|
committer | suzhe@chromium.org <suzhe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-15 08:20:19 +0000 |
commit | aeba67b45fc66b5c03205a470cb87d3995ab198a (patch) | |
tree | 84dcd8a86108ddd2b0c18e40795dfbea1b32dc7d /chrome/common/gtk_util.h | |
parent | f35334961b26e1382810780a99761c8fc1086d5f (diff) | |
download | chromium_src-aeba67b45fc66b5c03205a470cb87d3995ab198a.zip chromium_src-aeba67b45fc66b5c03205a470cb87d3995ab198a.tar.gz chromium_src-aeba67b45fc66b5c03205a470cb87d3995ab198a.tar.bz2 |
Linux: Stack autocomplete popup window directly on top of the browser's toplevel window.
BUG=19082 "Linux: Omnibox auto-complete popup is on top of IME candidate window when using SCIM"
TEST=Please refer to the bug report for how to test.
Review URL: http://codereview.chromium.org/274046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29102 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/gtk_util.h')
-rw-r--r-- | chrome/common/gtk_util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/common/gtk_util.h b/chrome/common/gtk_util.h index dfdde5a..749aade 100644 --- a/chrome/common/gtk_util.h +++ b/chrome/common/gtk_util.h @@ -181,6 +181,9 @@ void SetAlwaysShowImage(GtkWidget* image_menu_item); // with gdk_cursor_new(); owner must gdk_cursor_unref() it when done with it. GdkCursor* GetCursor(GdkCursorType type); +// Stacks a |popup| window directly on top of a |toplevel| window. +void StackPopupWindow(GtkWidget* popup, GtkWidget* toplevel); + } // namespace gtk_util #endif // CHROME_COMMON_GTK_UTIL_H_ |