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

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

Issue 2676663002: [Payments] Implements the credit card editor for Desktop UI (Closed)
Patch Set: formatting Created 3 years, 10 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_interactive_uitest.cc
diff --git a/chrome/browser/ui/views/payments/payment_request_interactive_uitest.cc b/chrome/browser/ui/views/payments/payment_request_interactive_uitest.cc
index 8858da27fe8b2cf6019965693546e1861fc7a8d5..04e69373308659a6fab35fc9f0ecf86dbd3565f6 100644
--- a/chrome/browser/ui/views/payments/payment_request_interactive_uitest.cc
+++ b/chrome/browser/ui/views/payments/payment_request_interactive_uitest.cc
@@ -4,6 +4,7 @@
#include <vector>
+#include "base/macros.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/views/payments/payment_request_dialog_view_ids.h"
@@ -22,6 +23,9 @@ class PaymentRequestWebContentsManagerTest
PaymentRequestWebContentsManagerTest()
: PaymentRequestInteractiveTestBase(
"/payment_request_multiple_requests.html") {}
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(PaymentRequestWebContentsManagerTest);
};
// If the page creates multiple PaymentRequest objects, it should not crash.
@@ -36,6 +40,9 @@ class PaymentRequestNoShippingTest : public PaymentRequestInteractiveTestBase {
PaymentRequestNoShippingTest()
: PaymentRequestInteractiveTestBase(
"/payment_request_no_shipping_test.html") {}
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(PaymentRequestNoShippingTest);
};
IN_PROC_BROWSER_TEST_F(PaymentRequestNoShippingTest,
@@ -90,6 +97,9 @@ class PaymentRequestAbortTest : public PaymentRequestInteractiveTestBase {
protected:
PaymentRequestAbortTest()
: PaymentRequestInteractiveTestBase("/payment_request_abort_test.html") {}
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(PaymentRequestAbortTest);
};
// Testing the use of the abort() JS API.

Powered by Google App Engine
This is Rietveld 408576698