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

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

Issue 2701923003: [Payment Request] Error message screen (Closed)
Patch Set: Addressed comments 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_ITEMS_DISPLAY_VIEW_CONTROLLER_H_ 5 #ifndef IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_ITEMS_DISPLAY_VIEW_CONTROLLER_H_
6 #define IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_ITEMS_DISPLAY_VIEW_CONTROLLER_H_ 6 #define IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_ITEMS_DISPLAY_VIEW_CONTROLLER_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 #include <vector> 9 #include <vector>
10 10
11 #include "ios/chrome/browser/payments/payment_request.h" 11 #include "ios/chrome/browser/payments/payment_request.h"
12 #import "ios/chrome/browser/ui/collection_view/collection_view_controller.h" 12 #import "ios/chrome/browser/ui/collection_view/collection_view_controller.h"
13 #include "ios/web/public/payments/payment_request.h" 13 #include "ios/web/public/payments/payment_request.h"
14 14
15 // The accessibility identifiers of the cells in the collection view. 15 // The accessibility identifiers of the cells in the collection view.
16 extern NSString* const kPaymentItemsDisplayItemId; 16 extern NSString* const kPaymentItemsDisplayItemID;
17 17
18 @class PaymentItemsDisplayViewController; 18 @class PaymentItemsDisplayViewController;
19 19
20 // Delegate protocol for PaymentItemsDisplayViewController. 20 // Delegate protocol for PaymentItemsDisplayViewController.
21 @protocol PaymentItemsDisplayViewControllerDelegate<NSObject> 21 @protocol PaymentItemsDisplayViewControllerDelegate<NSObject>
22 22
23 // Notifies the delegate that the user has chosen to return to the previous 23 // Notifies the delegate that the user has chosen to return to the previous
24 // screen. 24 // screen.
25 - (void)paymentItemsDisplayViewControllerDidReturn: 25 - (void)paymentItemsDisplayViewControllerDidReturn:
26 (PaymentItemsDisplayViewController*)controller; 26 (PaymentItemsDisplayViewController*)controller;
(...skipping 22 matching lines...) Expand all
49 NS_DESIGNATED_INITIALIZER; 49 NS_DESIGNATED_INITIALIZER;
50 50
51 - (instancetype)init NS_UNAVAILABLE; 51 - (instancetype)init NS_UNAVAILABLE;
52 52
53 - (instancetype)initWithStyle:(CollectionViewControllerStyle)style 53 - (instancetype)initWithStyle:(CollectionViewControllerStyle)style
54 NS_UNAVAILABLE; 54 NS_UNAVAILABLE;
55 55
56 @end 56 @end
57 57
58 #endif // IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_ITEMS_DISPLAY_VIEW_CONTROLLER_H_ 58 #endif // IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_ITEMS_DISPLAY_VIEW_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698