Upstream version 9.38.204.0
[platform/framework/web/crosswalk.git] / src / ozone / wayland / shell / xdg_shell_surface.h
index 764013f..a2fb0c4 100644 (file)
@@ -28,6 +28,8 @@ class XDGShellSurface : public WaylandShellSurface {
   virtual void SetWindowTitle(const base::string16& title) OVERRIDE;
   virtual void Maximize() OVERRIDE;
   virtual void Minimize() OVERRIDE;
+  virtual void Unminimize() OVERRIDE;
+  virtual bool IsMinimized() const OVERRIDE;
 
   static void HandleConfigure(void* data,
                               struct xdg_surface* xdg_surface,
@@ -53,6 +55,7 @@ class XDGShellSurface : public WaylandShellSurface {
   xdg_surface* xdg_surface_;
   xdg_popup* xdg_popup_;
   bool maximized_;
+  bool minimized_;
   DISALLOW_COPY_AND_ASSIGN(XDGShellSurface);
 };