Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / ui / gfx / geometry / insets.cc
index 300de45..c29368e 100644 (file)
@@ -4,10 +4,6 @@
 
 #include "ui/gfx/geometry/insets.h"
 
-#if defined(TOOLKIT_GTK)
-#include <gtk/gtk.h>
-#endif
-
 #include "base/strings/stringprintf.h"
 
 namespace gfx {
@@ -19,15 +15,6 @@ Insets::Insets() : InsetsBase<Insets, int>(0, 0, 0, 0) {}
 Insets::Insets(int top, int left, int bottom, int right)
     : InsetsBase<Insets, int>(top, left, bottom, right) {}
 
-#if defined(TOOLKIT_GTK)
-Insets::Insets(const GtkBorder& border)
-    : InsetsBase<Insets, int>(border.top,
-                              border.left,
-                              border.bottom,
-                              border.right) {
-}
-#endif
-
 Insets::~Insets() {}
 
 std::string Insets::ToString() const {