| Commit message (Expand) | Author | Age | Files | Lines |
* | Gin: Spruce the README a bit. | aa@chromium.org | 2013-12-23 | 1 | -5/+21 |
* | Add a simple one shot and repeating timer API for Mojo.js. | aa@chromium.org | 2013-12-21 | 17 | -28/+321 |
* | Implement more of the JavaScript GL API. | aa@chromium.org | 2013-12-21 | 6 | -18/+168 |
* | Do not use (mostly) deprecated FunctionTemplate::New and Object::New functions. | svenpanne@chromium.org | 2013-12-19 | 2 | -1/+2 |
* | [gin] fix casting WrappableBase to a derived class | jochen@chromium.org | 2013-12-19 | 2 | -7/+20 |
* | Add support for wrapping classes indirectly inherited from gin::Wrappable<T> | aa@chromium.org | 2013-12-19 | 3 | -39/+70 |
* | [gin] Introduce Wrappable::GetObjectTemplate | jochen@chromium.org | 2013-12-17 | 8 | -60/+62 |
* | [gin] use a UniquePersistent to hold the context in context_holder | jochen@chromium.org | 2013-12-17 | 2 | -4/+1 |
* | [gin] Use ObjectTemplateBuilder instead of ObjectTemplate::New | jochen@chromium.org | 2013-12-17 | 2 | -11/+8 |
* | Beginning of JS Mojo API to GL. | aa@chromium.org | 2013-12-13 | 3 | -9/+12 |
* | Reland 240298 "[gin] also install gin function templates on non-..."" | jochen@chromium.org | 2013-12-13 | 2 | -7/+11 |
* | [gin] Turn gin into a component | jochen@chromium.org | 2013-12-12 | 22 | -50/+115 |
* | Revert 240298 "[gin] also install gin function templates on non-..." | jam@chromium.org | 2013-12-12 | 1 | -1/+0 |
* | [gin] also install gin function templates on non-gin managed isolates | jochen@chromium.org | 2013-12-12 | 1 | -0/+1 |
* | Update function_template.h.pump file after changes in r240271 | jochen@chromium.org | 2013-12-12 | 1 | -2/+5 |
* | [gin] Declare a wrappable's kWrapperInfo on the class deriving from Wrappable | jochen@chromium.org | 2013-12-12 | 4 | -15/+14 |
* | [gin] WrappableBase's dtor needs to be virtual | jochen@chromium.org | 2013-12-11 | 3 | -10/+13 |
* | Fix gin's ModuleRegistry::Load(). | viettrungluu@chromium.org | 2013-12-11 | 1 | -1/+2 |
* | Don't use (almost) deprecated FunctionTemplate::New version, part 2. | svenpanne@chromium.org | 2013-12-10 | 2 | -2/+2 |
* | Gin: Make it easier to implement Wrappable. | aa@chromium.org | 2013-12-08 | 7 | -140/+129 |
* | Gin: Consolidate all the Converter<Wrappable> subclasses. | aa@chromium.org | 2013-12-06 | 6 | -69/+103 |
* | Remove usage of C++11 std::vector<> APIs from gin's ModuleRegistry | jochen@chromium.org | 2013-12-06 | 1 | -1/+1 |
* | Gin: Add support for binding JS methods to C++ instance methods. | aa@chromium.org | 2013-12-06 | 10 | -238/+306 |
* | [gin] move context_holder to public/ | jochen@chromium.org | 2013-12-06 | 5 | -8/+20 |
* | [gin] when creating an IsolateHolder for an existing Isolate, don't setup v8 | jochen@chromium.org | 2013-12-05 | 1 | -0/+2 |
* | Add myself to gin owners | jochen@chromium.org | 2013-12-05 | 1 | -0/+1 |
* | gin::Wrappable shouldn't inherit from base::RefCounted | abarth@chromium.org | 2013-12-05 | 7 | -28/+97 |
* | Implement gin::ObjectTemplateBuilder | aa@chromium.org | 2013-11-29 | 8 | -23/+122 |
* | Remove usage of deprecagted V8 API from gin/ | jochen@chromium.org | 2013-11-28 | 9 | -38/+44 |
* | [Mojo] Remove static "bootstrap" state in mojo_js | abarth@chromium.org | 2013-11-28 | 4 | -10/+56 |
* | Convert the rest of the functions in core.cc to use CreateFunctionTemplate. | aa@chromium.org | 2013-11-27 | 16 | -102/+211 |
* | [Gin] Add documentation to explain how Gin works | abarth@chromium.org | 2013-11-27 | 15 | -11/+127 |
* | Implement support in function_template.h for return types. | aa@chromium.org | 2013-11-26 | 5 | -86/+250 |
* | Use pump to generate more overloads of CreateFunctionTemplate. | aa@chromium.org | 2013-11-26 | 3 | -16/+237 |
* | [Gin] Add a basic unit testing framework | abarth@chromium.org | 2013-11-25 | 11 | -23/+353 |
* | [Mojo] Almost connect mojo_js with hello_world_service | abarth@chromium.org | 2013-11-25 | 10 | -40/+75 |
* | [Mojo] Improve JavaScript API for MojoReadMessage | abarth@chromium.org | 2013-11-24 | 3 | -16/+32 |
* | First cut at gin::Bind(). | aa@chromium.org | 2013-11-23 | 6 | -31/+135 |
* | [gin] add support for non-gin managed isolates in gin. | jochen@chromium.org | 2013-11-22 | 12 | -55/+87 |
* | Teach mojo_js_bindings_unittests to load generated JS files | abarth@chromium.org | 2013-11-22 | 6 | -28/+39 |
* | [Gin] Add a mechanism for wrapping C++ object | abarth@chromium.org | 2013-11-21 | 6 | -12/+276 |
* | Add a GinEmbedder enum and use it to identify WrapperInfo | jochen@chromium.org | 2013-11-20 | 7 | -5/+34 |
* | Mojo's C++ and JavaScript bindings should produce identical messages | abarth@chromium.org | 2013-11-20 | 1 | -0/+2 |
* | Add a gin/public directory | jochen@chromium.org | 2013-11-20 | 8 | -10/+10 |
* | Introduce a Gin class instead of using global functions to control gin | jochen@chromium.org | 2013-11-19 | 14 | -88/+147 |
* | Add console.log support to gin_shell | abarth@chromium.org | 2013-11-19 | 6 | -7/+98 |
* | Port Mojo's sample_service.cc to JavaScript | abarth@chromium.org | 2013-11-19 | 1 | -6/+4 |
* | Fix win64 build error | jschuh@chromium.org | 2013-11-19 | 1 | -2/+2 |
* | Implement Mojo message codec in JavaScript | abarth@chromium.org | 2013-11-18 | 7 | -16/+43 |
* | Introduce gin_shell | abarth@chromium.org | 2013-11-18 | 24 | -164/+568 |