Index: third_party/WebKit/public/web/WebFrameOwnerProperties.h |
diff --git a/third_party/WebKit/public/web/WebFrameOwnerProperties.h b/third_party/WebKit/public/web/WebFrameOwnerProperties.h |
index d0c282c914f76aa9f1096af6da2414359c199a29..002b03f699ccc90fcd0f051d1387b8dd7c88be56 100644 |
--- a/third_party/WebKit/public/web/WebFrameOwnerProperties.h |
+++ b/third_party/WebKit/public/web/WebFrameOwnerProperties.h |
@@ -18,19 +18,22 @@ struct WebFrameOwnerProperties { |
ScrollingMode scrollingMode; |
int marginWidth; |
int marginHeight; |
+ bool allowFullscreen; |
WebFrameOwnerProperties() |
: scrollingMode(ScrollingMode::Auto) |
, marginWidth(-1) |
, marginHeight(-1) |
+ , allowFullscreen(false) |
{ |
} |
#if INSIDE_BLINK |
- WebFrameOwnerProperties(ScrollbarMode scrollingMode, int marginWidth, int marginHeight) |
+ WebFrameOwnerProperties(ScrollbarMode scrollingMode, int marginWidth, int marginHeight, bool allowFullscreen) |
: scrollingMode(static_cast<ScrollingMode>(scrollingMode)) |
, marginWidth(marginWidth) |
, marginHeight(marginHeight) |
+ , allowFullscreen(allowFullscreen) |
{ |
} |
#endif |