Home | History | Annotate | Download | only in extensions

Lines Matching defs:v8

1 // Copyright 2013 the V8 project authors. All rights reserved.
8 #include "src/v8.h"
10 namespace v8 {
13 class FreeBufferExtension : public v8::Extension {
16 : v8::Extension("v8/free-buffer", "native function freeBuffer();") {}
17 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
18 v8::Isolate* isolate,
19 v8::Handle<v8::String> name);
20 static void FreeBuffer(const v8::FunctionCallbackInfo<v8::Value>& args);
23 } } // namespace v8::internal