Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(469)

Unified Diff: Source/core/dom/Document.h

Issue 138443013: Remove iframe@seamless (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Include remove tests Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698