| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index 8832da5904cc21ed6ee67d02da854f0a74418ffb..cdc18a35662be9d3dbe2702c9521ab23285a5cc2 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -1014,6 +1014,10 @@ public:
|
| void updateSecurityOrigin(PassRefPtr<SecurityOrigin>);
|
| PassOwnPtr<LifecycleNotifier<Document> > createLifecycleNotifier();
|
|
|
| + void setHasViewportUnits() { m_hasViewportUnits = true; }
|
| + bool hasViewportUnits() { return m_hasViewportUnits; }
|
| + void notifyResizeForViewportUnits();
|
| +
|
| protected:
|
| Document(const DocumentInit&, DocumentClassFlags = DefaultDocumentClass);
|
|
|
| @@ -1309,6 +1313,8 @@ private:
|
|
|
| Timer<Document> m_didAssociateFormControlsTimer;
|
| HashSet<RefPtr<Element> > m_associatedFormControls;
|
| +
|
| + bool m_hasViewportUnits;
|
| };
|
|
|
| inline void Document::notifyRemovePendingSheetIfNeeded()
|
|
|