Index: ui/gfx/insets.h |
=================================================================== |
--- ui/gfx/insets.h (revision 92815) |
+++ ui/gfx/insets.h (working copy) |
@@ -6,14 +6,15 @@ |
#define UI_GFX_INSETS_H_ |
#pragma once |
+#include <string> |
+ |
#include "build/build_config.h" |
+#include "ui/ui_api.h" |
#if defined(OS_POSIX) && !defined(OS_MACOSX) |
#include <gtk/gtkstyle.h> |
#endif |
-#include <string> |
- |
namespace gfx { |
// |
@@ -21,7 +22,7 @@ |
// leave at each of its edges). |
// |
-class Insets { |
+class UI_API Insets { |
public: |
Insets() : top_(0), left_(0), bottom_(0), right_(0) {} |
Insets(int top, int left, int bottom, int right) |