| 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) {
 | 
| 
 |