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

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

Issue 2192413002: Timeout if website never completes the transaction. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Marijn's comments Created 4 years, 5 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 70e5c80fe078449e1da0b181ac6124047c2e8015..45e758d2817ac7fa24b85ac90b874f54a051a449 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentCompleter.h
+++ b/third_party/WebKit/Source/modules/payments/PaymentCompleter.h
@@ -11,16 +11,16 @@
namespace blink {
-enum PaymentComplete {
- Success,
- Fail,
- Unknown
-};
-
class ScriptState;
class MODULES_EXPORT PaymentCompleter : public GarbageCollectedMixin {
public:
+ enum PaymentComplete {
+ Success,
+ Fail,
+ Unknown
+ };
+
virtual ScriptPromise complete(ScriptState*, PaymentComplete result) = 0;
protected:

Powered by Google App Engine
This is Rietveld 408576698