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

Unified Diff: chrome/browser/ui/views/payments/shipping_list_view_controller.h

Issue 2643643006: [WebPayments] Adding something resembling Shipping Address list (Closed)
Patch Set: Further rebasing Created 3 years, 11 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: chrome/browser/ui/views/payments/shipping_list_view_controller.h
diff --git a/chrome/browser/ui/views/payments/shipping_list_view_controller.h b/chrome/browser/ui/views/payments/shipping_list_view_controller.h
new file mode 100644
index 0000000000000000000000000000000000000000..9b3d441931e959a42715e3f467bad94b4b6b3b6e
--- /dev/null
+++ b/chrome/browser/ui/views/payments/shipping_list_view_controller.h
@@ -0,0 +1,39 @@
+// 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 CHROME_BROWSER_UI_VIEWS_PAYMENTS_SHIPPING_LIST_VIEW_CONTROLLER_H_
+#define CHROME_BROWSER_UI_VIEWS_PAYMENTS_SHIPPING_LIST_VIEW_CONTROLLER_H_
+
+#include "base/macros.h"
+#include "chrome/browser/ui/views/payments/payment_request_sheet_controller.h"
+#include "ui/views/controls/button/vector_icon_button_delegate.h"
+
+namespace payments {
+
+class PaymentRequest;
+class PaymentRequestDialogView;
+
+// The PaymentRequestSheetController subtype for the Shipping address list
+// screen of the Payment Request flow.
+class ShippingListViewController : public PaymentRequestSheetController,
+ public views::VectorIconButtonDelegate {
+ public:
+ // Does not take ownership of the arguments, which should outlive this object.
+ ShippingListViewController(PaymentRequest* request,
+ PaymentRequestDialogView* dialog);
+ ~ShippingListViewController() override;
+
+ // PaymentRequestSheetController:
+ std::unique_ptr<views::View> CreateView() override;
+
+ private:
+ // views::VectorIconButtonDelegate:
+ void ButtonPressed(views::Button* sender, const ui::Event& event) override;
+
+ DISALLOW_COPY_AND_ASSIGN(ShippingListViewController);
+};
+
+} // namespace payments
+
+#endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_SHIPPING_LIST_VIEW_CONTROLLER_H_

Powered by Google App Engine
This is Rietveld 408576698