| Index: content/browser/browser_plugin/browser_plugin_guest.cc
|
| diff --git a/content/browser/browser_plugin/browser_plugin_guest.cc b/content/browser/browser_plugin/browser_plugin_guest.cc
|
| index 6991a29f73f1a75947aa2c84d543412f422823cc..4b8cef72fde0bd91c2ef5e13ebae65bdf22ac212 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_guest.cc
|
| +++ b/content/browser/browser_plugin/browser_plugin_guest.cc
|
| @@ -465,6 +465,12 @@ WebContentsImpl* BrowserPluginGuest::GetWebContents() const {
|
| return static_cast<WebContentsImpl*>(web_contents());
|
| }
|
|
|
| +void BrowserPluginGuest::SendScrollCompletion(bool handled) {
|
| + DCHECK(attached() && owner_web_contents_);
|
| + SendMessageToEmbedder(
|
| + new BrowserPluginMsg_SignalScrollCompletionEvent(handled));
|
| +}
|
| +
|
| gfx::Point BrowserPluginGuest::GetScreenCoordinates(
|
| const gfx::Point& relative_position) const {
|
| if (!attached())
|
|
|