OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_GTK_CHROME_GTK_FRAME_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_CHROME_GTK_FRAME_H_ |
6 #define CHROME_BROWSER_GTK_CHROME_GTK_FRAME_H_ | 6 #define CHROME_BROWSER_UI_GTK_CHROME_GTK_FRAME_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gdk/gdk.h> | 9 #include <gdk/gdk.h> |
10 #include <gtk/gtkwindow.h> | 10 #include <gtk/gtkwindow.h> |
11 | 11 |
12 G_BEGIN_DECLS | 12 G_BEGIN_DECLS |
13 | 13 |
14 // This file declares two subclasses of GtkWindow for easier gtk+ theme | 14 // This file declares two subclasses of GtkWindow for easier gtk+ theme |
15 // integration. | 15 // integration. |
16 // | 16 // |
(...skipping 29 matching lines...) Expand all Loading... |
46 | 46 |
47 struct _ChromeGtkFrameClass { | 47 struct _ChromeGtkFrameClass { |
48 MetaFramesClass frames_class; | 48 MetaFramesClass frames_class; |
49 }; | 49 }; |
50 | 50 |
51 // Creates a GtkWindow object the the class name "ChromeGtkFrame". | 51 // Creates a GtkWindow object the the class name "ChromeGtkFrame". |
52 GtkWidget* chrome_gtk_frame_new(); | 52 GtkWidget* chrome_gtk_frame_new(); |
53 | 53 |
54 G_END_DECLS | 54 G_END_DECLS |
55 | 55 |
56 #endif // CHROME_BROWSER_GTK_CHROME_GTK_FRAME_H_ | 56 #endif // CHROME_BROWSER_UI_GTK_CHROME_GTK_FRAME_H_ |
OLD | NEW |