Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 4ab1ec2b4f8c54c83f36f4ee2ecd53ddec1be599..0bc076832c776f7af5f681acb0b81e91a3173562 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -1689,6 +1689,8 @@ class Object : public Value { |
V8EXPORT static Local<Object> New(); |
static inline Object* Cast(Value* obj); |
+ |
+ V8EXPORT Local<Object> NewInstance(int argc, Handle<Value> argv[]) const; |
Mads Ager (chromium)
2011/04/28 12:14:42
NewInstance as a name makes sense for functions bu
|
private: |
V8EXPORT Object(); |
V8EXPORT static void CheckCast(Value* obj); |