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

Unified Diff: third_party/WebKit/Source/core/page/ChromeClient.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/page/ChromeClient.cpp
diff --git a/third_party/WebKit/Source/core/page/ChromeClient.cpp b/third_party/WebKit/Source/core/page/ChromeClient.cpp
index 0722386ff3d352bc587e7520346c1acf7da69b34..a872700611f8fa835f05195b7d11a08966cb1fb6 100644
--- a/third_party/WebKit/Source/core/page/ChromeClient.cpp
+++ b/third_party/WebKit/Source/core/page/ChromeClient.cpp
@@ -182,7 +182,7 @@ void ChromeClient::setToolTip(LocalFrame& frame, const HitTestResult& result) {
// implementations don't use text direction information for
// ChromeClient::setToolTip. We'll work on tooltip text
// direction during bidi cleanup in form inputs.
- toolTipDirection = TextDirection::Ltr;
+ toolTipDirection = TextDirection::kLtr;
}
}
}
@@ -198,7 +198,7 @@ void ChromeClient::setToolTip(LocalFrame& frame, const HitTestResult& result) {
void ChromeClient::clearToolTip(LocalFrame& frame) {
// Do not check m_lastToolTip* and do not update them intentionally.
// We don't want to show tooltips with same content after clearToolTip().
- setToolTip(frame, String(), TextDirection::Ltr);
+ setToolTip(frame, String(), TextDirection::kLtr);
}
bool ChromeClient::print(LocalFrame* frame) {

Powered by Google App Engine
This is Rietveld 408576698