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

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

Issue 2709093006: Adding new shipping address editor view to payment flow. (Closed)
Patch Set: Bot failure fix 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/payments/payment_request_dialog_view.h
diff --git a/chrome/browser/ui/views/payments/payment_request_dialog_view.h b/chrome/browser/ui/views/payments/payment_request_dialog_view.h
index 318b31b61088148933973fc0d0896823c2f8b944..821c4362bdad08bd716c7532a065076f6b507b2a 100644
--- a/chrome/browser/ui/views/payments/payment_request_dialog_view.h
+++ b/chrome/browser/ui/views/payments/payment_request_dialog_view.h
@@ -40,9 +40,15 @@ class PaymentRequestDialogView : public views::DialogDelegateView,
virtual void OnPaymentMethodOpened() = 0;
+ virtual void OnShippingSectionOpened() = 0;
+
virtual void OnCreditCardEditorOpened() = 0;
+ virtual void OnShippingAddressEditorOpened() = 0;
+
virtual void OnBackNavigation() = 0;
+
+ virtual void OnEditorViewUpdated() = 0;
};
// Build a Dialog around the PaymentRequest object. |observer| is used to
@@ -72,6 +78,8 @@ class PaymentRequestDialogView : public views::DialogDelegateView,
void ShowPaymentMethodSheet();
void ShowShippingOptionSheet();
void ShowCreditCardEditor();
+ void ShowShippingAddressEditor();
+ void EditorViewUpdated();
ViewStack* view_stack_for_testing() { return &view_stack_; }

Powered by Google App Engine
This is Rietveld 408576698