Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp |
| diff --git a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp |
| index ee6d324fe3dbacd19fe1e53a068af1ecfa66da3b..1e5b2ba9b8dceb77772e059bf1377480b37fb2f1 100644 |
| --- a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp |
| +++ b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp |
| @@ -102,6 +102,14 @@ bool HTMLPlugInElement::canProcessDrag() const |
| return pluginWidget() && pluginWidget()->isPluginView() && toPluginView(pluginWidget())->canProcessDrag(); |
| } |
| +bool HTMLPlugInElement::canStartSelection() const |
| +{ |
| + if (!useFallbackContent()) |
|
yosin_UTC9
2016/06/22 01:23:18
How about below?
return useFallbackContent() && N
aelias_OOO_until_Jul13
2016/06/22 01:33:03
Done.
|
| + return false; |
| + |
| + return Node::canStartSelection(); |
| +} |
| + |
| bool HTMLPlugInElement::willRespondToMouseClickEvents() |
| { |
| if (isDisabledFormControl()) |