| Index: third_party/WebKit/Source/core/dom/Document.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h
|
| index dd523dfa00ab5e83a64f738a0c6a963b9379ad2d..49be352729dcd754e36bab2f602fa8b82b78db1b 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.h
|
| +++ b/third_party/WebKit/Source/core/dom/Document.h
|
| @@ -422,18 +422,18 @@ public:
|
| bool needsLayoutTreeUpdateForNode(const Node&) const;
|
| // Update ComputedStyles and attach LayoutObjects if necessary, but don't
|
| // lay out.
|
| - void updateLayoutTree();
|
| - // Same as updateLayoutTree() except ignoring pending stylesheets.
|
| - void updateLayoutTreeIgnorePendingStylesheets();
|
| - void updateLayoutTreeForNode(const Node*);
|
| - void updateLayout();
|
| + void updateStyleAndLayoutTree();
|
| + // Same as updateStyleAndLayoutTree() except ignoring pending stylesheets.
|
| + void updateStyleAndLayoutTreeIgnorePendingStylesheets();
|
| + void updateStyleAndLayoutTreeForNode(const Node*);
|
| + void updateStyleAndLayout();
|
| void layoutUpdated();
|
| enum RunPostLayoutTasks {
|
| RunPostLayoutTasksAsyhnchronously,
|
| RunPostLayoutTasksSynchronously,
|
| };
|
| - void updateLayoutIgnorePendingStylesheets(RunPostLayoutTasks = RunPostLayoutTasksAsyhnchronously);
|
| - void updateLayoutIgnorePendingStylesheetsForNode(Node*);
|
| + void updateStyleAndLayoutIgnorePendingStylesheets(RunPostLayoutTasks = RunPostLayoutTasksAsyhnchronously);
|
| + void updateStyleAndLayoutIgnorePendingStylesheetsForNode(Node*);
|
| PassRefPtr<ComputedStyle> styleForElementIgnoringPendingStylesheets(Element*);
|
| PassRefPtr<ComputedStyle> styleForPage(int pageIndex);
|
|
|
|
|