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

Unified Diff: chrome/browser/ui/views/payments/payment_method_view_controller.cc

Issue 2649683002: [Payments] Improve the closing of the PR dialog. (Closed)
Patch Set: addressed comments from sky 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/payment_method_view_controller.cc
diff --git a/chrome/browser/ui/views/payments/payment_method_view_controller.cc b/chrome/browser/ui/views/payments/payment_method_view_controller.cc
index 38a7973cf77d73089bbd56f9de3916e7d726ac98..3d6e102429b6fbc927c3dcef056144748f55835d 100644
--- a/chrome/browser/ui/views/payments/payment_method_view_controller.cc
+++ b/chrome/browser/ui/views/payments/payment_method_view_controller.cc
@@ -9,7 +9,7 @@
#include "base/logging.h"
#include "base/memory/ptr_util.h"
-#include "chrome/browser/ui/views/payments/payment_request_dialog.h"
+#include "chrome/browser/ui/views/payments/payment_request_dialog_view.h"
#include "chrome/browser/ui/views/payments/payment_request_views_util.h"
#include "components/payments/payment_request.h"
#include "components/strings/grit/components_strings.h"
@@ -18,8 +18,9 @@
namespace payments {
PaymentMethodViewController::PaymentMethodViewController(
- PaymentRequest* request, PaymentRequestDialog* dialog)
- : PaymentRequestSheetController(request, dialog) {}
+ PaymentRequest* request,
+ PaymentRequestDialogView* dialog)
+ : PaymentRequestSheetController(request, dialog) {}
PaymentMethodViewController::~PaymentMethodViewController() {}

Powered by Google App Engine
This is Rietveld 408576698