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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.cpp

Issue 2620873002: Renamed EUnicodeBidi to just UnicodeBidi (Closed)
Patch Set: Rebase Created 3 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: third_party/WebKit/Source/core/style/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index 833e0495827befd6b5a9c021083e6b6c2955e5e7..0b60c5b2984298caeba241a74a5cfe36042963ad 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -104,7 +104,7 @@ PassRefPtr<ComputedStyle> ComputedStyle::createAnonymousStyleWithDisplay(
EDisplay display) {
RefPtr<ComputedStyle> newStyle = ComputedStyle::create();
newStyle->inheritFrom(parentStyle);
- newStyle->setUnicodeBidi(parentStyle.unicodeBidi());
+ newStyle->setUnicodeBidi(parentStyle.getUnicodeBidi());
newStyle->setDisplay(display);
return newStyle;
}

Powered by Google App Engine
This is Rietveld 408576698