| Index: content/renderer/browser_plugin/browser_plugin.cc
|
| diff --git a/content/renderer/browser_plugin/browser_plugin.cc b/content/renderer/browser_plugin/browser_plugin.cc
|
| index ed2b4266fcc51f4c834e290bb12cc68a32849c91..517913fc70f856b3997a6af4c663dc67d7ae3565 100644
|
| --- a/content/renderer/browser_plugin/browser_plugin.cc
|
| +++ b/content/renderer/browser_plugin/browser_plugin.cc
|
| @@ -360,6 +360,10 @@ void BrowserPlugin::destroy() {
|
| base::MessageLoop::current()->DeleteSoon(FROM_HERE, this);
|
| }
|
|
|
| +v8::Local<v8::Object> BrowserPlugin::v8ScriptableObject(v8::Isolate* isolate) {
|
| + return delegate_->v8ScriptableObject(isolate);
|
| +}
|
| +
|
| bool BrowserPlugin::supportsKeyboardFocus() const {
|
| return true;
|
| }
|
|
|