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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentCompleter.h

Issue 2697123003: Use ExecutionContext instead of Document in PaymentRequest constructor. (Closed)
Patch Set: Created 3 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
Index: third_party/WebKit/Source/modules/payments/PaymentCompleter.h
diff --git a/third_party/WebKit/Source/modules/payments/PaymentCompleter.h b/third_party/WebKit/Source/modules/payments/PaymentCompleter.h
index e89514312517c9cade32000e291ca362b3901478..7c14eb174f0640b5b351988ada505e11a63e4a88 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentCompleter.h
+++ b/third_party/WebKit/Source/modules/payments/PaymentCompleter.h
@@ -11,13 +11,11 @@
namespace blink {
-class ScriptState;
-
class MODULES_EXPORT PaymentCompleter : public GarbageCollectedMixin {
public:
enum PaymentComplete { Success, Fail, Unknown };
- virtual ScriptPromise complete(ScriptState*, PaymentComplete result) = 0;
+ virtual ScriptPromise complete(PaymentComplete result) = 0;
protected:
virtual ~PaymentCompleter() {}

Powered by Google App Engine
This is Rietveld 408576698