Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1021)

Unified Diff: ui/base/gtk/gtk_expanded_container.h

Issue 93863005: ui: Rename ui_export.h to ui_base_export.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: UI_BASE_IMPLEMENTATION Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/base/gtk/g_object_destructor_filo.h ('k') | ui/base/gtk/gtk_floating_container.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/gtk/gtk_expanded_container.h
diff --git a/ui/base/gtk/gtk_expanded_container.h b/ui/base/gtk/gtk_expanded_container.h
index 63e3dbd1494971a8015e804b50499acf778cecf2..c136151e3a4147b5601c470740b7d91af2088734 100644
--- a/ui/base/gtk/gtk_expanded_container.h
+++ b/ui/base/gtk/gtk_expanded_container.h
@@ -8,7 +8,7 @@
#include <gdk/gdk.h>
#include <gtk/gtk.h>
-#include "ui/base/ui_export.h"
+#include "ui/base/ui_base_export.h"
// A specialized container derived from GtkFixed, which expands the size of its
// children to fill the container, in one or both directions. The usage of this
@@ -57,16 +57,20 @@ struct _GtkExpandedContainerClass {
GtkFixedClass parent_class;
};
-UI_EXPORT GType gtk_expanded_container_get_type() G_GNUC_CONST;
-UI_EXPORT GtkWidget* gtk_expanded_container_new();
-UI_EXPORT void gtk_expanded_container_put(GtkExpandedContainer* container,
- GtkWidget* widget, gint x, gint y);
-UI_EXPORT void gtk_expanded_container_move(GtkExpandedContainer* container,
- GtkWidget* widget, gint x, gint y);
-UI_EXPORT void gtk_expanded_container_set_has_window(
+UI_BASE_EXPORT GType gtk_expanded_container_get_type() G_GNUC_CONST;
+UI_BASE_EXPORT GtkWidget* gtk_expanded_container_new();
+UI_BASE_EXPORT void gtk_expanded_container_put(GtkExpandedContainer* container,
+ GtkWidget* widget,
+ gint x,
+ gint y);
+UI_BASE_EXPORT void gtk_expanded_container_move(GtkExpandedContainer* container,
+ GtkWidget* widget,
+ gint x,
+ gint y);
+UI_BASE_EXPORT void gtk_expanded_container_set_has_window(
GtkExpandedContainer* container,
gboolean has_window);
-UI_EXPORT gboolean gtk_expanded_container_get_has_window(
+UI_BASE_EXPORT gboolean gtk_expanded_container_get_has_window(
GtkExpandedContainer* container);
G_END_DECLS
« no previous file with comments | « ui/base/gtk/g_object_destructor_filo.h ('k') | ui/base/gtk/gtk_floating_container.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698