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

Unified Diff: components/payments/payments_validators_test.cc

Issue 2477883002: [Web Payments] Mojom namespace blink -> payments (Closed)
Patch Set: Fix WebKit tests Created 4 years, 1 month 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
« no previous file with comments | « components/payments/payments_validators.cc ('k') | content/public/app/mojo/content_browser_manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/payments/payments_validators_test.cc
diff --git a/components/payments/payments_validators_test.cc b/components/payments/payments_validators_test.cc
index bf7fcc5a8dc66c044d80616d5ec06b227f96fb13..16fedd0e8118ddb1df82a7aa6e8ebcee05378c48 100644
--- a/components/payments/payments_validators_test.cc
+++ b/components/payments/payments_validators_test.cc
@@ -7,7 +7,7 @@
#include "testing/gtest/include/gtest/gtest.h"
#include <ostream> // NOLINT
-namespace blink {
+namespace payments {
namespace {
struct CurrencyCodeTestCase {
@@ -244,7 +244,8 @@ class PaymentsShippingAddressValidatorTest
: public testing::TestWithParam<ShippingAddressTestCase> {};
TEST_P(PaymentsShippingAddressValidatorTest, IsValidShippingAddress) {
- blink::mojom::PaymentAddressPtr address = blink::mojom::PaymentAddress::New();
+ payments::mojom::PaymentAddressPtr address =
+ payments::mojom::PaymentAddress::New();
address->country = GetParam().countryCode;
address->language_code = GetParam().languageCode;
address->script_code = GetParam().scriptCode;
@@ -276,4 +277,4 @@ INSTANTIATE_TEST_CASE_P(
ShippingAddressTestCase("US", "", "Latn", false)));
} // namespace
-} // namespace blink
+} // namespace payments
« no previous file with comments | « components/payments/payments_validators.cc ('k') | content/public/app/mojo/content_browser_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698