Chromium Code Reviews

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

Issue 18601002: Add infrastructure for partial layouts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Change how reentrant scrollbar code works, change test to prove it works Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 5b5af6f77ddcfe95627bca412c554ccde6ab0ca9..eccb31070346acb84bb2c9afdb04b351b3532072 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -489,6 +489,7 @@ public:
void updateStyleForNodeIfNeeded(Node*);
void updateLayout();
void updateLayoutIgnorePendingStylesheets();
+ void partialUpdateLayoutIgnorePendingStylesheets(Node*);
PassRefPtr<RenderStyle> styleForElementIgnoringPendingStylesheets(Element*);
PassRefPtr<RenderStyle> styleForPage(int pageIndex);
@@ -1121,6 +1122,8 @@ private:
void seamlessParentUpdatedStylesheets();
+ void recalcStyleForLayoutIgnoringPendingStylesheets();
+
PassRefPtr<NodeList> handleZeroPadding(const HitTestRequest&, HitTestResult&) const;
void loadEventDelayTimerFired(Timer<Document>*);

Powered by Google App Engine