| Index: third_party/WebKit/Source/web/WebViewImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| index 6cd7e9b1da251a7e73f047d45a8cf1fa445099b2..763441d941d2b0a60d9b1ae49c97c1281aea381f 100644
|
| --- a/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| @@ -3761,6 +3761,13 @@ void WebViewImpl::showContextMenu()
|
| }
|
| }
|
|
|
| +void WebViewImpl::didCloseContextMenu()
|
| +{
|
| + LocalFrame* frame = m_page->focusController().focusedFrame();
|
| + if (frame)
|
| + frame->selection().setCaretBlinkingSuspended(false);
|
| +}
|
| +
|
| void WebViewImpl::extractSmartClipData(WebRect rectInViewport, WebString& clipText, WebString& clipHtml, WebRect& clipRectInViewport)
|
| {
|
| LocalFrame* localFrame = toLocalFrame(focusedCoreFrame());
|
|
|