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

Unified Diff: third_party/WebKit/Source/core/dom/Element.cpp

Issue 2149393002: Rename ElementRareData::ensureComputedStyle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | third_party/WebKit/Source/core/dom/ElementRareData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Element.cpp
diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
index 4505973a65b97337d034af5288a6f719cb03397d..8edd1e9f1f7219b752cd95a05cfa9bbc0d191321 100644
--- a/third_party/WebKit/Source/core/dom/Element.cpp
+++ b/third_party/WebKit/Source/core/dom/Element.cpp
@@ -2830,9 +2830,9 @@ const ComputedStyle* Element::ensureComputedStyle(PseudoId pseudoElementSpecifie
ComputedStyle* elementStyle = mutableComputedStyle();
if (!elementStyle) {
ElementRareData& rareData = ensureElementRareData();
- if (!rareData.ensureComputedStyle())
+ if (!rareData.computedStyle())
rareData.setComputedStyle(document().styleForElementIgnoringPendingStylesheets(this));
- elementStyle = rareData.ensureComputedStyle();
+ elementStyle = rareData.computedStyle();
}
if (!pseudoElementSpecifier)
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/ElementRareData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698