Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Unified Diff: trunk/Source/bindings/v8/ScriptPromiseResolver.h

Issue 158583002: Revert 166694 "Move serviceworker/ module to oilpan" (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | trunk/Source/modules/serviceworkers/InstallEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | trunk/Source/modules/serviceworkers/InstallEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698