Chromium Code Reviews| Index: ios/chrome/browser/payments/payment_request_selector_view_controller_actions.h |
| diff --git a/ios/chrome/browser/payments/payment_request_selector_view_controller_actions.h b/ios/chrome/browser/payments/payment_request_selector_view_controller_actions.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8151a4251af02c3737daab2e07ba5c514db78193 |
| --- /dev/null |
| +++ b/ios/chrome/browser/payments/payment_request_selector_view_controller_actions.h |
| @@ -0,0 +1,17 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_SELECTOR_VIEW_CONTROLLER_ACTIONS_H_ |
| +#define IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_SELECTOR_VIEW_CONTROLLER_ACTIONS_H_ |
| + |
| +// Protocol handling the actions sent by the |
| +// PaymentRequestSelectorViewController. |
| +@protocol PaymentRequestSelectorViewControllerActions |
| + |
| +// Called when the user presses the return button. |
| +- (void)onReturn; |
|
lpromero
2017/04/11 15:59:06
What is the return button in the screenshot? Maybe
lpromero
2017/04/11 17:30:19
Got it. The return button is present in the normal
|
| + |
| +@end |
| + |
| +#endif // IOS_CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_SELECTOR_VIEW_CONTROLLER_ACTIONS_H_ |