| 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..c5d24e0b8d29097a49b94d7650995e35bd735ae7 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;
|
| }
|
|
|