| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 367951acc517b810c354a23f9e2958c869927969..22b693502e08a66f095275bd42a813a5dbe5f364 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -2488,6 +2488,12 @@ TextInputManager* WebContentsImpl::GetTextInputManager() {
|
| return text_input_manager_.get();
|
| }
|
|
|
| +bool WebContentsImpl::OnUpdateDragCursor() {
|
| + if (browser_plugin_embedder_)
|
| + return browser_plugin_embedder_->OnUpdateDragCursor();
|
| + return false;
|
| +}
|
| +
|
| BrowserAccessibilityManager*
|
| WebContentsImpl::GetRootBrowserAccessibilityManager() {
|
| RenderFrameHostImpl* rfh = GetMainFrame();
|
|
|