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

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

Issue 361863003: Add a helper for implementing Promise-valued properties. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 b1f3781cde698650365fefe46b6527adbb7bff12..cfcf2bca270b50d1570c5585bf789c9266b401f0 100644
--- a/Source/bindings/v8/ScriptPromise.h
+++ b/Source/bindings/v8/ScriptPromise.h
@@ -93,6 +93,16 @@ public:
m_promise.clear();
}
+ bool operator==(const ScriptPromise& value) const
+ {
+ return m_promise == value.m_promise;
+ }
+
+ bool operator!=(const ScriptPromise& value) const
+ {
+ return !operator==(value);
yhirano 2014/07/01 04:38:14 No need for the parentheses?
dominicc (has gone to gerrit) 2014/07/01 05:32:16 I think they're needed for the explicit invocation
+ }
+
// Constructs and returns a ScriptPromise from |value|.
// if |value| is not a Promise object, returns a Promise object
// resolved with |value|.
« no previous file with comments | « no previous file | Source/bindings/v8/ScriptPromiseProperty.h » ('j') | Source/bindings/v8/ScriptPromisePropertyBase.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698