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

Side by Side Diff: ios/chrome/browser/payments/payment_request_view_controller.h

Issue 2701923003: [Payment Request] Error message screen (Closed)
Patch Set: rebase 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_VIEW_CONTROLLER_H_ 5 #ifndef IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_VIEW_CONTROLLER_H_
6 #define IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_VIEW_CONTROLLER_H_ 6 #define IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_VIEW_CONTROLLER_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 #include "ios/chrome/browser/payments/payment_request.h" 10 #include "ios/chrome/browser/payments/payment_request.h"
11 #import "ios/chrome/browser/ui/collection_view/collection_view_controller.h" 11 #import "ios/chrome/browser/ui/collection_view/collection_view_controller.h"
12 #include "ios/web/public/payments/payment_request.h" 12 #include "ios/web/public/payments/payment_request.h"
13 13
14 extern NSString* const kPaymentRequestCollectionViewId; 14 extern NSString* const kPaymentRequestCollectionViewID;
15 15
16 @class PaymentRequestViewController; 16 @class PaymentRequestViewController;
17 17
18 // Delegate protocol for PaymentRequestViewController. 18 // Delegate protocol for PaymentRequestViewController.
19 @protocol PaymentRequestViewControllerDelegate<NSObject> 19 @protocol PaymentRequestViewControllerDelegate<NSObject>
20 20
21 // Notifies the delegate that the user has canceled the payment request. 21 // Notifies the delegate that the user has canceled the payment request.
22 - (void)paymentRequestViewControllerDidCancel: 22 - (void)paymentRequestViewControllerDidCancel:
23 (PaymentRequestViewController*)controller; 23 (PaymentRequestViewController*)controller;
24 24
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 NS_DESIGNATED_INITIALIZER; 84 NS_DESIGNATED_INITIALIZER;
85 85
86 - (instancetype)init NS_UNAVAILABLE; 86 - (instancetype)init NS_UNAVAILABLE;
87 87
88 - (instancetype)initWithStyle:(CollectionViewControllerStyle)style 88 - (instancetype)initWithStyle:(CollectionViewControllerStyle)style
89 NS_UNAVAILABLE; 89 NS_UNAVAILABLE;
90 90
91 @end 91 @end
92 92
93 #endif // IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_VIEW_CONTROLLER_H_ 93 #endif // IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_VIEW_CONTROLLER_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/payments/payment_request_manager.mm ('k') | ios/chrome/browser/payments/payment_request_view_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698