diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-25 02:19:34 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-25 02:19:34 +0000 |
commit | 0d72f004efa9898b428b9b289a8d63d2427e2828 (patch) | |
tree | f749189620fba034c4e09aa5e64c537eba778e61 /gin/wrappable.h | |
parent | 6a36eff422ce0dfaf8bcb75585863c38817d219d (diff) | |
download | chromium_src-0d72f004efa9898b428b9b289a8d63d2427e2828.zip chromium_src-0d72f004efa9898b428b9b289a8d63d2427e2828.tar.gz chromium_src-0d72f004efa9898b428b9b289a8d63d2427e2828.tar.bz2 |
[Mojo] Almost connect mojo_js with hello_world_service
This CL connects mojo_js with hello_world_service. After this
CL, the JavaScript and C++ implementations have reached
parity.
BUG=317398
Review URL: https://codereview.chromium.org/82953004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237018 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gin/wrappable.h')
-rw-r--r-- | gin/wrappable.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gin/wrappable.h b/gin/wrappable.h index 66c2389..79b7144 100644 --- a/gin/wrappable.h +++ b/gin/wrappable.h @@ -15,6 +15,8 @@ class Wrappable : public base::RefCounted<Wrappable> { public: virtual WrapperInfo* GetWrapperInfo() = 0; + v8::Handle<v8::Object> GetWrapper(v8::Isolate* isolate); + protected: Wrappable(); virtual ~Wrappable(); |