| 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_LIBGTK2UI_CHROME_GTK_FRAME_H_ | 5 #ifndef CHROME_BROWSER_UI_LIBGTKUI_CHROME_GTK_FRAME_H_ |
| 6 #define CHROME_BROWSER_UI_LIBGTK2UI_CHROME_GTK_FRAME_H_ | 6 #define CHROME_BROWSER_UI_LIBGTKUI_CHROME_GTK_FRAME_H_ |
| 7 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 G_BEGIN_DECLS | 10 G_BEGIN_DECLS |
| 11 | 11 |
| 12 // This file declares two subclasses of GtkWindow for easier gtk+ theme | 12 // This file declares two subclasses of GtkWindow for easier gtk+ theme |
| 13 // integration. | 13 // integration. |
| 14 // | 14 // |
| 15 // The first is "MetaFrames," which is (was?) the name of a gobject class in | 15 // The first is "MetaFrames," which is (was?) the name of a gobject class in |
| 16 // the metacity window manager. To actually get at those values, we need to | 16 // the metacity window manager. To actually get at those values, we need to |
| (...skipping 27 matching lines...) Expand all Loading... |
| 44 | 44 |
| 45 struct _ChromeGtkFrameClass { | 45 struct _ChromeGtkFrameClass { |
| 46 MetaFramesClass frames_class; | 46 MetaFramesClass frames_class; |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 // Creates a GtkWindow object the the class name "ChromeGtkFrame". | 49 // Creates a GtkWindow object the the class name "ChromeGtkFrame". |
| 50 GtkWidget* chrome_gtk_frame_new(); | 50 GtkWidget* chrome_gtk_frame_new(); |
| 51 | 51 |
| 52 G_END_DECLS | 52 G_END_DECLS |
| 53 | 53 |
| 54 #endif // CHROME_BROWSER_UI_LIBGTK2UI_CHROME_GTK_FRAME_H_ | 54 #endif // CHROME_BROWSER_UI_LIBGTKUI_CHROME_GTK_FRAME_H_ |
| OLD | NEW |