Home | History | Annotate | only in /external/chromium_org/gin
Up to higher level directory
NameDateSize
arguments.cc05-Aug-20151.2K
arguments.h05-Aug-20152.3K
array_buffer.cc05-Aug-20156.4K
array_buffer.h05-Aug-20152K
BUILD.gn05-Aug-20152.6K
context_holder.cc05-Aug-2015686
converter.cc05-Aug-20156.1K
converter.h05-Aug-20156.3K
converter_unittest.cc05-Aug-20154.9K
debug_impl.cc05-Aug-2015809
debug_impl.h05-Aug-2015510
DEPS05-Aug-201540
dictionary.cc05-Aug-20151.1K
dictionary.h05-Aug-20152K
function_template.cc05-Aug-2015881
function_template.h05-Aug-201516K
function_template.h.pump05-Aug-20157K
gin.gyp05-Aug-20153.8K
gin.target.darwin-arm.mk05-Aug-20157.4K
gin.target.darwin-arm64.mk05-Aug-20156.9K
gin.target.darwin-mips.mk05-Aug-20157K
gin.target.darwin-mips64.mk05-Aug-20157K
gin.target.darwin-x86.mk05-Aug-20157.1K
gin.target.darwin-x86_64.mk05-Aug-20157.1K
gin.target.linux-arm.mk05-Aug-20157.4K
gin.target.linux-arm64.mk05-Aug-20156.9K
gin.target.linux-mips.mk05-Aug-20157K
gin.target.linux-mips64.mk05-Aug-20157K
gin.target.linux-x86.mk05-Aug-20157.1K
gin.target.linux-x86_64.mk05-Aug-20157.1K
gin_export.h05-Aug-2015706
handle.h05-Aug-20151.9K
interceptor.cc05-Aug-20152K
interceptor.h05-Aug-20152K
interceptor_unittest.cc05-Aug-20156K
isolate_holder.cc05-Aug-20152.6K
modules/05-Aug-2015
object_template_builder.cc05-Aug-20156.2K
object_template_builder.h05-Aug-20155.6K
OWNERS05-Aug-201556
per_context_data.cc05-Aug-20151K
per_context_data.h05-Aug-20151.5K
per_context_data_unittest.cc05-Aug-20151.2K
per_isolate_data.cc05-Aug-20153.4K
per_isolate_data.h05-Aug-20153.7K
public/05-Aug-2015
README05-Aug-20151,000
run_microtasks_observer.cc05-Aug-2015567
run_microtasks_observer.h05-Aug-2015931
runner.cc05-Aug-2015539
runner.h05-Aug-20151.8K
shell/05-Aug-2015
shell_runner.cc05-Aug-20152.9K
shell_runner.h05-Aug-20152.2K
shell_runner_unittest.cc05-Aug-20151.1K
test/05-Aug-2015
try_catch.cc05-Aug-20151.1K
try_catch.h05-Aug-2015643
v8_platform.cc05-Aug-20151.1K
wrappable.cc05-Aug-20152.7K
wrappable.h05-Aug-20153.4K
wrappable_unittest.cc05-Aug-20158.1K
wrapper_info.cc05-Aug-2015568

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