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

Side by Side Diff: chrome/browser/ui/views/payments/order_summary_view_controller.h

Issue 2768133002: [Web Payments] Refactor sheet display to allow updating view content (Closed)
Patch Set: Add comments. Created 3 years, 9 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 CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_ 6 #define CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "chrome/browser/ui/views/payments/payment_request_sheet_controller.h" 9 #include "chrome/browser/ui/views/payments/payment_request_sheet_controller.h"
10 #include "components/payments/content/payment_request_state.h" 10 #include "components/payments/content/payment_request_state.h"
11 11
12 namespace views {
13 class Button;
14 }
15
12 namespace payments { 16 namespace payments {
13 17
14 class PaymentRequestSpec; 18 class PaymentRequestSpec;
15 class PaymentRequestState; 19 class PaymentRequestState;
16 class PaymentRequestDialogView; 20 class PaymentRequestDialogView;
17 21
18 // The PaymentRequestSheetController subtype for the Order Summary screen of the 22 // The PaymentRequestSheetController subtype for the Order Summary screen of the
19 // Payment Request flow. 23 // Payment Request flow.
20 class OrderSummaryViewController : public PaymentRequestSheetController, 24 class OrderSummaryViewController : public PaymentRequestSheetController,
21 public PaymentRequestState::Observer { 25 public PaymentRequestState::Observer {
22 public: 26 public:
23 // Does not take ownership of the arguments, which should outlive this object. 27 // Does not take ownership of the arguments, which should outlive this object.
24 OrderSummaryViewController(PaymentRequestSpec* spec, 28 OrderSummaryViewController(PaymentRequestSpec* spec,
25 PaymentRequestState* state, 29 PaymentRequestState* state,
26 PaymentRequestDialogView* dialog); 30 PaymentRequestDialogView* dialog);
27 ~OrderSummaryViewController() override; 31 ~OrderSummaryViewController() override;
28 32
29 // PaymentRequestSheetController:
30 std::unique_ptr<views::View> CreateView() override;
31 std::unique_ptr<views::Button> CreatePrimaryButton() override;
32
33 // PaymentRequestState::Observer: 33 // PaymentRequestState::Observer:
34 void OnSelectedInformationChanged() override; 34 void OnSelectedInformationChanged() override;
35 35
36 private: 36 private:
37 // PaymentRequestSheetController:
38 std::unique_ptr<views::Button> CreatePrimaryButton() override;
39 base::string16 GetSheetTitle() override;
40 void FillContentView(views::View* content_view) override;
37 void UpdatePayButtonState(bool enabled); 41 void UpdatePayButtonState(bool enabled);
38 42
39 views::Button* pay_button_; 43 views::Button* pay_button_;
40 44
41 DISALLOW_COPY_AND_ASSIGN(OrderSummaryViewController); 45 DISALLOW_COPY_AND_ASSIGN(OrderSummaryViewController);
42 }; 46 };
43 47
44 } // namespace payments 48 } // namespace payments
45 49
46 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_ 50 #endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_ORDER_SUMMARY_VIEW_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698