Home | History | Annotate | only in /external/chromium_org/gin
Up to higher level directory
NameDateSize
arguments.cc04-Nov-20141.1K
arguments.h04-Nov-20142.1K
array_buffer.cc04-Nov-20146.4K
array_buffer.h04-Nov-20142K
BUILD.gn04-Nov-20142.5K
context_holder.cc04-Nov-2014686
converter.cc04-Nov-20146.1K
converter.h04-Nov-20146.3K
converter_unittest.cc04-Nov-20144.9K
DEPS04-Nov-201440
dictionary.cc04-Nov-20141.1K
dictionary.h04-Nov-20142K
function_template.cc04-Nov-2014881
function_template.h04-Nov-201416K
function_template.h.pump04-Nov-20147K
gin.gyp04-Nov-20143.6K
gin.target.darwin-arm.mk04-Nov-20148.1K
gin.target.darwin-arm64.mk04-Nov-20147.5K
gin.target.darwin-mips.mk04-Nov-20147.7K
gin.target.darwin-x86.mk04-Nov-20147.7K
gin.target.darwin-x86_64.mk04-Nov-20147.7K
gin.target.linux-arm.mk04-Nov-20148.1K
gin.target.linux-arm64.mk04-Nov-20147.5K
gin.target.linux-mips.mk04-Nov-20147.7K
gin.target.linux-x86.mk04-Nov-20147.7K
gin.target.linux-x86_64.mk04-Nov-20147.7K
gin_export.h04-Nov-2014706
handle.h04-Nov-20141.9K
interceptor.cc04-Nov-20142K
interceptor.h04-Nov-20141.9K
interceptor_unittest.cc04-Nov-20144.8K
isolate_holder.cc04-Nov-20142.4K
modules/04-Nov-2014
object_template_builder.cc04-Nov-20146.2K
object_template_builder.h04-Nov-20145.6K
OWNERS04-Nov-201456
per_context_data.cc04-Nov-20141K
per_context_data.h04-Nov-20141.5K
per_context_data_unittest.cc04-Nov-20141.2K
per_isolate_data.cc04-Nov-20143.4K
per_isolate_data.h04-Nov-20143.7K
public/04-Nov-2014
README04-Nov-20141,000
runner.cc04-Nov-2014539
runner.h04-Nov-20141.8K
shell/04-Nov-2014
shell_runner.cc04-Nov-20142.9K
shell_runner.h04-Nov-20142.2K
shell_runner_unittest.cc04-Nov-2014968
test/04-Nov-2014
try_catch.cc04-Nov-20141.1K
try_catch.h04-Nov-2014643
v8_platform.cc04-Nov-20141.1K
wrappable.cc04-Nov-20142.7K
wrappable.h04-Nov-20143.4K
wrappable_unittest.cc04-Nov-20147.8K
wrapper_info.cc04-Nov-2014568

README

      1 Gin - Lightweight bindings for V8
      2 =================================
      3 
      4 This directory contains Gin, a set of utilities to make working with V8 easier.
      5 
      6 Here are some of the key bits:
      7 
      8 * converter.h: Templatized JS<->C++ conversion routines for many common C++
      9   types. You can define your own by specializing Converter.
     10 
     11 * function_template.h: Create JavaScript functions that dispatch to any C++
     12   function, member function pointer, or base::Callback.
     13 
     14 * object_template_builder.h: A handy utility for creation of v8::ObjectTemplate.
     15 
     16 * wrappable.h: Base class for C++ classes that want to be owned by the V8 GC.
     17   Wrappable objects are automatically deleted when GC discovers that nothing in
     18   the V8 heap refers to them. This is also an easy way to expose C++ objects to
     19   JavaScript.
     20 
     21 * runner.h: Create script contexts and run code in them.
     22 
     23 * module_runner_delegate.h: A delegate for runner that implements a subset of
     24   the AMD module specification. Also see modules/ with some example modules.
     25