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

Unified Diff: third_party/WebKit/Source/core/html/HTMLInputElement.cpp

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. 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/html/HTMLInputElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
index 31e1445a29756896829a8f53f89d70c5516e18b8..970cf1f6dfc397ad9b87212b09352eb180d8d887 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
@@ -1820,7 +1820,7 @@ bool HTMLInputElement::setupDateTimeChooserParameters(
document().view()->contentsToScreen(pixelSnappedBoundingBox());
parameters.doubleValue = m_inputType->valueAsDouble();
parameters.isAnchorElementRTL =
- m_inputTypeView->computedTextDirection() == TextDirection::Rtl;
+ m_inputTypeView->computedTextDirection() == TextDirection::kRtl;
if (HTMLDataListElement* dataList = this->dataList()) {
HTMLDataListOptionsCollection* options = dataList->options();
for (unsigned i = 0; HTMLOptionElement* option = options->item(i); ++i) {

Powered by Google App Engine
This is Rietveld 408576698