| Index: content/renderer/render_view_impl.cc
|
| diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
|
| index 8bb66f17ae1b3486bd1dbb52df9164a85e8d85e4..35d517fbe90e0b33ce38bc53ecb6b24152bc848d 100644
|
| --- a/content/renderer/render_view_impl.cc
|
| +++ b/content/renderer/render_view_impl.cc
|
| @@ -1800,7 +1800,7 @@ void RenderViewImpl::SetValidationMessageDirection(
|
| }
|
|
|
| void RenderViewImpl::showValidationMessage(
|
| - const blink::WebRect& anchor_in_root_view,
|
| + const blink::WebRect& anchor_in_viewport,
|
| const blink::WebString& main_text,
|
| blink::WebTextDirection main_text_hint,
|
| const blink::WebString& sub_text,
|
| @@ -1812,7 +1812,7 @@ void RenderViewImpl::showValidationMessage(
|
| &wrapped_main_text, main_text_hint, &wrapped_sub_text, sub_text_hint);
|
|
|
| Send(new ViewHostMsg_ShowValidationMessage(
|
| - routing_id(), AdjustValidationMessageAnchor(anchor_in_root_view),
|
| + routing_id(), AdjustValidationMessageAnchor(anchor_in_viewport),
|
| wrapped_main_text, wrapped_sub_text));
|
| }
|
|
|
| @@ -1821,9 +1821,9 @@ void RenderViewImpl::hideValidationMessage() {
|
| }
|
|
|
| void RenderViewImpl::moveValidationMessage(
|
| - const blink::WebRect& anchor_in_root_view) {
|
| + const blink::WebRect& anchor_in_viewport) {
|
| Send(new ViewHostMsg_MoveValidationMessage(
|
| - routing_id(), AdjustValidationMessageAnchor(anchor_in_root_view)));
|
| + routing_id(), AdjustValidationMessageAnchor(anchor_in_viewport)));
|
| }
|
|
|
| void RenderViewImpl::setStatusText(const WebString& text) {
|
|
|