| Index: third_party/WebKit/Source/core/dom/Element.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.h b/third_party/WebKit/Source/core/dom/Element.h
|
| index ae22bda3cf54494f3a71e79464e4a1ae51b5a17f..11484794556ee7ce9480aef678194bcdf5f738db 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.h
|
| +++ b/third_party/WebKit/Source/core/dom/Element.h
|
| @@ -84,8 +84,8 @@ enum ElementFlags {
|
| TabIndexWasSetExplicitly = 1 << 0,
|
| StyleAffectedByEmpty = 1 << 1,
|
| IsInCanvasSubtree = 1 << 2,
|
| - ContainsFullScreenElement = 1 << 3,
|
| - IsInTopLayer = 1 << 4,
|
| + IsInTopLayer = 1 << 3,
|
| + IsFullscreen = 1 << 4,
|
| HasPendingResources = 1 << 5,
|
| AlreadySpellChecked = 1 << 6,
|
|
|
| @@ -652,15 +652,12 @@ class CORE_EXPORT Element : public ContainerNode {
|
| void setCustomElementDefinition(CustomElementDefinition*);
|
| CustomElementDefinition* customElementDefinition() const;
|
|
|
| - bool containsFullScreenElement() const {
|
| - return hasElementFlag(ContainsFullScreenElement);
|
| - }
|
| - void setContainsFullScreenElement(bool);
|
| - void setContainsFullScreenElementOnAncestorsCrossingFrameBoundaries(bool);
|
| -
|
| bool isInTopLayer() const { return hasElementFlag(IsInTopLayer); }
|
| void setIsInTopLayer(bool);
|
|
|
| + bool isFullscreen() const { return hasElementFlag(IsFullscreen); }
|
| + void setIsFullscreen(bool);
|
| +
|
| void requestPointerLock();
|
|
|
| bool isSpellCheckingEnabled() const;
|
|
|