Home | History | Annotate | only in /external/chromium_org/gin
Up to higher level directory
NameDateSize
arguments.cc10-Mar-20151.2K
arguments.h10-Mar-20152.3K
array_buffer.cc16-Dec-20146.4K
array_buffer.h10-Mar-20152K
BUILD.gn10-Mar-20152.6K
context_holder.cc16-Dec-2014686
converter.cc16-Dec-20146.1K
converter.h16-Dec-20146.3K
converter_unittest.cc16-Dec-20144.9K
debug_impl.cc10-Mar-2015809
debug_impl.h10-Mar-2015510
DEPS16-Dec-201440
dictionary.cc16-Dec-20141.1K
dictionary.h16-Dec-20142K
function_template.cc16-Dec-2014881
function_template.h16-Dec-201416K
function_template.h.pump16-Dec-20147K
gin.gyp10-Mar-20153.8K
gin.target.darwin-arm.mk10-Mar-20157.4K
gin.target.darwin-arm64.mk10-Mar-20156.9K
gin.target.darwin-mips.mk10-Mar-20157K
gin.target.darwin-mips64.mk10-Mar-20157K
gin.target.darwin-x86.mk10-Mar-20157.1K
gin.target.darwin-x86_64.mk10-Mar-20157.1K
gin.target.linux-arm.mk10-Mar-20157.4K
gin.target.linux-arm64.mk10-Mar-20156.9K
gin.target.linux-mips.mk10-Mar-20157K
gin.target.linux-mips64.mk10-Mar-20157K
gin.target.linux-x86.mk10-Mar-20157.1K
gin.target.linux-x86_64.mk10-Mar-20157.1K
gin_export.h16-Dec-2014706
handle.h16-Dec-20141.9K
interceptor.cc10-Mar-20152K
interceptor.h10-Mar-20152K
interceptor_unittest.cc10-Mar-20156K
isolate_holder.cc10-Mar-20152.6K
modules/10-Mar-2015
object_template_builder.cc10-Mar-20156.2K
object_template_builder.h16-Dec-20145.6K
OWNERS16-Dec-201456
per_context_data.cc16-Dec-20141K
per_context_data.h16-Dec-20141.5K
per_context_data_unittest.cc16-Dec-20141.2K
per_isolate_data.cc16-Dec-20143.4K
per_isolate_data.h16-Dec-20143.7K
public/10-Mar-2015
README16-Dec-20141,000
run_microtasks_observer.cc10-Mar-2015567
run_microtasks_observer.h10-Mar-2015931
runner.cc16-Dec-2014539
runner.h16-Dec-20141.8K
shell/10-Mar-2015
shell_runner.cc16-Dec-20142.9K
shell_runner.h16-Dec-20142.2K
shell_runner_unittest.cc10-Mar-20151.1K
test/10-Mar-2015
try_catch.cc16-Dec-20141.1K
try_catch.h16-Dec-2014643
v8_platform.cc16-Dec-20141.1K
wrappable.cc16-Dec-20142.7K
wrappable.h16-Dec-20143.4K
wrappable_unittest.cc10-Mar-20158.1K
wrapper_info.cc16-Dec-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