| Index: trunk/Source/bindings/v8/ScriptPromiseResolver.h
|
| ===================================================================
|
| --- trunk/Source/bindings/v8/ScriptPromiseResolver.h (revision 166772)
|
| +++ trunk/Source/bindings/v8/ScriptPromiseResolver.h (working copy)
|
| @@ -96,11 +96,7 @@
|
| template<typename T>
|
| void resolve(PassRefPtr<T> value, v8::Handle<v8::Object> creationContext) { resolve(value.get(), creationContext); }
|
| template<typename T>
|
| - void resolve(RawPtr<T> value, v8::Handle<v8::Object> creationContext) { resolve(value.get(), creationContext); }
|
| - template<typename T>
|
| void reject(PassRefPtr<T> value, v8::Handle<v8::Object> creationContext) { reject(value.get(), creationContext); }
|
| - template<typename T>
|
| - void reject(RawPtr<T> value, v8::Handle<v8::Object> creationContext) { reject(value.get(), creationContext); }
|
|
|
| template<typename T>
|
| inline void resolve(T* value, ExecutionContext*);
|
| @@ -110,11 +106,7 @@
|
| template<typename T>
|
| void resolve(PassRefPtr<T> value, ExecutionContext* context) { resolve(value.get(), context); }
|
| template<typename T>
|
| - void resolve(RawPtr<T> value, ExecutionContext* context) { resolve(value.get(), context); }
|
| - template<typename T>
|
| void reject(PassRefPtr<T> value, ExecutionContext* context) { reject(value.get(), context); }
|
| - template<typename T>
|
| - void reject(RawPtr<T> value, ExecutionContext* context) { reject(value.get(), context); }
|
|
|
| template<typename T>
|
| inline void resolve(T* value);
|
| @@ -124,11 +116,7 @@
|
| template<typename T>
|
| void resolve(PassRefPtr<T> value) { resolve(value.get()); }
|
| template<typename T>
|
| - void resolve(RawPtr<T> value) { resolve(value.get()); }
|
| - template<typename T>
|
| void reject(PassRefPtr<T> value) { reject(value.get()); }
|
| - template<typename T>
|
| - void reject(RawPtr<T> value) { reject(value.get()); }
|
|
|
| void resolve(ScriptValue);
|
| void reject(ScriptValue);
|
|
|