Chromium Code Reviews| Index: Source/web/WebPluginContainerImpl.h |
| diff --git a/Source/web/WebPluginContainerImpl.h b/Source/web/WebPluginContainerImpl.h |
| index 54e4d2869d94fcd4d2b538efb0236fac1160e998..4eab9ff91bc60c5c8e34a91e5fdeb2c589cd4e85 100644 |
| --- a/Source/web/WebPluginContainerImpl.h |
| +++ b/Source/web/WebPluginContainerImpl.h |
| @@ -1,5 +1,6 @@ |
| /* |
| * Copyright (C) 2009 Google Inc. All rights reserved. |
| + * Copyright (C) 2014 Opera Software ASA. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions are |
| @@ -75,7 +76,7 @@ public: |
| // PluginView methods |
| virtual WebLayer* platformLayer() const OVERRIDE; |
| - virtual NPObject* scriptableObject() OVERRIDE; |
| + virtual void getScriptableObject(v8::Isolate*, v8::Local<v8::Object>*) OVERRIDE; |
| virtual bool getFormValue(String&) OVERRIDE; |
| virtual bool supportsKeyboardFocus() const OVERRIDE; |
| virtual bool supportsInputMethod() const OVERRIDE; |
| @@ -107,6 +108,7 @@ public: |
| virtual void allowScriptObjects() OVERRIDE; |
| virtual void clearScriptObjects() OVERRIDE; |
| virtual NPObject* scriptableObjectForElement() OVERRIDE; |
| + virtual v8::Local<v8::Object> getV8ObjectForElement() OVERRIDE; |
|
abarth-chromium
2014/07/29 17:34:22
getV8ObjectForElement -> v8ObjectForElement
Krzysztof Olczyk
2014/07/30 08:40:31
Done.
|
| virtual WebString executeScriptURL(const WebURL&, bool popupsAllowed) OVERRIDE; |
| virtual void loadFrameRequest(const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData) OVERRIDE; |
| virtual void zoomLevelChanged(double zoomLevel) OVERRIDE; |