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

Unified Diff: Source/core/rendering/style/RenderStyle.h

Issue 247713003: Separate repaint and layout requirements of StyleDifference (Step 3) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments; Rebase on RAL Created 6 years, 8 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
« no previous file with comments | « Source/core/rendering/RenderObject.cpp ('k') | Source/core/rendering/style/RenderStyle.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/RenderStyle.h
diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h
index 0c943f32ae86d8837694cbaec4031a7be6d17566..bf83d88573bf9e742a364f9ab4ee93c4e7b22569 100644
--- a/Source/core/rendering/style/RenderStyle.h
+++ b/Source/core/rendering/style/RenderStyle.h
@@ -1782,9 +1782,9 @@ private:
void appendContent(PassOwnPtr<ContentData>);
bool diffNeedsFullLayout(const RenderStyle& other) const;
- bool diffNeedsRepaintLayerOnly(const RenderStyle& other) const;
- bool diffNeedsRepaintObjectOnly(const RenderStyle& other) const;
- bool diffNeedsRecompositeLayerOnly(const RenderStyle& other) const;
+ bool diffNeedsRepaintLayer(const RenderStyle& other) const;
+ bool diffNeedsRepaintObject(const RenderStyle& other) const;
+ bool diffNeedsRecompositeLayer(const RenderStyle& other) const;
unsigned computeChangedContextSensitiveProperties(const RenderStyle& other, StyleDifference) const;
};
« no previous file with comments | « Source/core/rendering/RenderObject.cpp ('k') | Source/core/rendering/style/RenderStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698