OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UI_LIBGTKUI_GTK2_UTIL_H_ | 5 #ifndef CHROME_BROWSER_UI_LIBGTKUI_GTK_UTIL_H_ |
6 #define CHROME_BROWSER_UI_LIBGTKUI_GTK2_UTIL_H_ | 6 #define CHROME_BROWSER_UI_LIBGTKUI_GTK_UTIL_H_ |
7 | 7 |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "ui/native_theme/native_theme.h" | 11 #include "ui/native_theme/native_theme.h" |
12 | 12 |
13 class SkBitmap; | 13 class SkBitmap; |
14 | 14 |
15 namespace aura { | 15 namespace aura { |
16 class Window; | 16 class Window; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 void SetGtkTransientForAura(GtkWidget* dialog, aura::Window* parent); | 48 void SetGtkTransientForAura(GtkWidget* dialog, aura::Window* parent); |
49 | 49 |
50 // Gets the transient parent aura window for |dialog|. | 50 // Gets the transient parent aura window for |dialog|. |
51 aura::Window* GetAuraTransientParent(GtkWidget* dialog); | 51 aura::Window* GetAuraTransientParent(GtkWidget* dialog); |
52 | 52 |
53 // Clears the transient parent for |dialog|. | 53 // Clears the transient parent for |dialog|. |
54 void ClearAuraTransientParent(GtkWidget* dialog); | 54 void ClearAuraTransientParent(GtkWidget* dialog); |
55 | 55 |
56 } // namespace libgtkui | 56 } // namespace libgtkui |
57 | 57 |
58 #endif // CHROME_BROWSER_UI_LIBGTKUI_GTK2_UTIL_H_ | 58 #endif // CHROME_BROWSER_UI_LIBGTKUI_GTK_UTIL_H_ |
OLD | NEW |