Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / web / FullscreenController.h
index 56a4d8f..a34254f 100644 (file)
@@ -31,6 +31,7 @@
 #ifndef FullscreenController_h
 #define FullscreenController_h
 
+#include "core/rendering/RenderFullScreen.h"
 #include "platform/geometry/FloatPoint.h"
 #include "platform/geometry/IntSize.h"
 #include "platform/heap/Handle.h"
@@ -43,7 +44,7 @@ class Element;
 class LocalFrame;
 class WebViewImpl;
 
-class FullscreenController FINAL : public NoBaseWillBeGarbageCollected<FullscreenController> {
+class FullscreenController final : public NoBaseWillBeGarbageCollected<FullscreenController> {
 public:
     static PassOwnPtrWillBeRawPtr<FullscreenController> create(WebViewImpl*);
 
@@ -55,6 +56,8 @@ public:
 
     bool isFullscreen() { return m_fullScreenFrame; }
 
+    void updateSize();
+
     void trace(Visitor*);
 
 protected: