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

Unified Diff: Source/bindings/v8/ScriptPromise.h

Issue 197213007: ScriptPromise implementation for V8 Promises (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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
Index: Source/bindings/v8/ScriptPromise.h
diff --git a/Source/bindings/v8/ScriptPromise.h b/Source/bindings/v8/ScriptPromise.h
index 35de810e4641bfea8d92e5666e02771cab90f7fd..170eb8122712c7d362985d127c7785a12ff5e498 100644
--- a/Source/bindings/v8/ScriptPromise.h
+++ b/Source/bindings/v8/ScriptPromise.h
@@ -99,12 +99,6 @@ public:
static ScriptPromise cast(const ScriptValue& /*value*/);
private:
- friend class ScriptPromiseResolver;
-
- static ScriptPromise createPending();
- static ScriptPromise createPending(ExecutionContext*);
- static ScriptPromise createPending(v8::Isolate*) { return createPending(); }
-
ScriptValue m_promise;
};

Powered by Google App Engine
This is Rietveld 408576698