Index: third_party/WebKit/WebCore/bindings/v8/V8Proxy.h |
=================================================================== |
--- third_party/WebKit/WebCore/bindings/v8/V8Proxy.h (revision 9778) |
+++ third_party/WebKit/WebCore/bindings/v8/V8Proxy.h (working copy) |
@@ -37,6 +37,13 @@ |
namespace WebCore { |
+ // Used by a bindings function to inform its interceptor that it's up to the |
+ // interceptor to provide the result of this call. |
+ inline static v8::Local<v8::Object> deferToInterceptor() |
Mads Ager (chromium)
2009/02/16 06:46:11
We should name this differently. The NamedPropert
|
+ { |
+ return v8::Local<v8::Object>(); |
+ } |
+ |
inline v8::Handle<v8::Primitive> throwError(const char* message, V8Proxy::ErrorType type = V8Proxy::TYPE_ERROR) |
{ |
V8Proxy::ThrowError(type, message); |