| Index: third_party/WebKit/Source/core/page/ValidationMessageClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/ValidationMessageClientImpl.cpp b/third_party/WebKit/Source/core/page/ValidationMessageClientImpl.cpp
|
| index 39d3d2ec908702d18803a35d600f8a9cb122d2e1..f2e3c3bc44b3c0a71619a3ce8c4b2ea704e121cc 100644
|
| --- a/third_party/WebKit/Source/core/page/ValidationMessageClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/core/page/ValidationMessageClientImpl.cpp
|
| @@ -85,7 +85,7 @@ void ValidationMessageClientImpl::ShowValidationMessage(
|
| web_view_.Client()->ShowValidationMessage(
|
| anchor_in_viewport, message_, ToWebTextDirection(message_dir),
|
| sub_message, ToWebTextDirection(sub_message_dir));
|
| - web_view_.ChromeClient().RegisterPopupOpeningObserver(this);
|
| + web_view_.GetChromeClient().RegisterPopupOpeningObserver(this);
|
|
|
| finish_time_ =
|
| MonotonicallyIncreasingTime() +
|
| @@ -107,7 +107,7 @@ void ValidationMessageClientImpl::HideValidationMessage(const Element& anchor) {
|
| message_ = String();
|
| finish_time_ = 0;
|
| web_view_.Client()->HideValidationMessage();
|
| - web_view_.ChromeClient().UnregisterPopupOpeningObserver(this);
|
| + web_view_.GetChromeClient().UnregisterPopupOpeningObserver(this);
|
| }
|
|
|
| bool ValidationMessageClientImpl::IsValidationMessageVisible(
|
|
|