X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fozone%2Fwayland%2Fshell%2Fxdg_shell_surface.h;h=a2fb0c443aa9a40d0e39f6dfa5450b45602811c8;hb=9f86df81fcd247bd2ce7c9a96196804f8d160474;hp=764013f8f8574a997d293017e1ffbb8ae4d64c09;hpb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/ozone/wayland/shell/xdg_shell_surface.h b/src/ozone/wayland/shell/xdg_shell_surface.h index 764013f..a2fb0c4 100644 --- a/src/ozone/wayland/shell/xdg_shell_surface.h +++ b/src/ozone/wayland/shell/xdg_shell_surface.h @@ -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); };