diff options
Diffstat (limited to 'chromeos/dbus/ibus/ibus_constants.h')
-rw-r--r-- | chromeos/dbus/ibus/ibus_constants.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/chromeos/dbus/ibus/ibus_constants.h b/chromeos/dbus/ibus/ibus_constants.h index 1c4c027..f375099 100644 --- a/chromeos/dbus/ibus/ibus_constants.h +++ b/chromeos/dbus/ibus/ibus_constants.h @@ -124,20 +124,6 @@ const char kServiceInterface[] = "org.freedesktop.IBus.Config"; const char kSetValueMethod[] = "SetValue"; } // namespace config -// We can't use ui/gfx/rect.h in chromeos/, so we should use ibus::Rect instead. -struct Rect { - Rect() : x(0), y(0), width(0), height(0) {} - Rect(int x, int y, int width, int height) - : x(x), - y(y), - width(width), - height(height) {} - int x; - int y; - int width; - int height; -}; - } // namespace ibus } // namespace chromeos |