| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index 0a8f265a7edb0d75cd9a423611d5935e6992efca..a6e11c64905ba077323c1923400e58712fe532ec 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -714,9 +714,6 @@ public:
|
| // Returns 0 if this is the top level document.
|
| HTMLFrameOwnerElement* ownerElement() const;
|
|
|
| - HTMLIFrameElement* seamlessParentIFrame() const;
|
| - bool shouldDisplaySeamlesslyWithParent() const;
|
| -
|
| String title() const { return m_title; }
|
| void setTitle(const String&);
|
|
|
| @@ -972,7 +969,6 @@ public:
|
| void didRemoveAllPendingStylesheet();
|
| void setNeedsNotifyRemoveAllPendingStylesheet() { m_needsNotifyRemoveAllPendingStylesheet = true; }
|
| void clearStyleResolver();
|
| - void notifySeamlessChildDocumentsOfStylesheetUpdate() const;
|
|
|
| bool inStyleRecalc() { return m_inStyleRecalc; }
|
|
|
| @@ -1075,8 +1071,6 @@ private:
|
|
|
| void executeScriptsWaitingForResourcesIfNeeded();
|
|
|
| - void seamlessParentUpdatedStylesheets();
|
| -
|
| void recalcStyleForLayoutIgnoringPendingStylesheets();
|
|
|
| PassRefPtr<NodeList> handleZeroPadding(const HitTestRequest&, HitTestResult&) const;
|
| @@ -1245,9 +1239,6 @@ private:
|
| bool m_sawElementsInKnownNamespaces;
|
| bool m_isSrcdocDocument;
|
| bool m_isMobileDocument;
|
| - // Set in Document::initSecurityContext() at Document creation, per:
|
| - // http://www.whatwg.org/specs/web-apps/current-work/#attr-iframe-seamless
|
| - bool m_mayDisplaySeamlesslyWithParent;
|
|
|
| RenderView* m_renderView;
|
|
|
|
|