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

Unified Diff: components/autofill/browser/wallet/full_wallet_unittest.cc

Issue 13145003: Rewrite std::string("") to std::string(), Linux edition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ugh Created 7 years, 8 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: components/autofill/browser/wallet/full_wallet_unittest.cc
diff --git a/components/autofill/browser/wallet/full_wallet_unittest.cc b/components/autofill/browser/wallet/full_wallet_unittest.cc
index 9eead307cc3b11cc6e1c1380faadc384dcb20d4c..5a65940f02b84226d4e480c7f1d24be34c78079b 100644
--- a/components/autofill/browser/wallet/full_wallet_unittest.cc
+++ b/components/autofill/browser/wallet/full_wallet_unittest.cc
@@ -402,8 +402,8 @@ TEST_F(FullWalletTest, CreateFullWalletWithRequiredActions) {
FullWallet full_wallet(-1,
-1,
- "",
- "",
+ std::string(),
+ std::string(),
scoped_ptr<Address>(),
scoped_ptr<Address>(),
required_actions);
@@ -411,14 +411,13 @@ TEST_F(FullWalletTest, CreateFullWalletWithRequiredActions) {
ASSERT_FALSE(required_actions.empty());
required_actions.pop_back();
- FullWallet different_required_actions(
- -1,
- -1,
- "",
- "",
- scoped_ptr<Address>(),
- scoped_ptr<Address>(),
- required_actions);
+ FullWallet different_required_actions(-1,
+ -1,
+ std::string(),
+ std::string(),
+ scoped_ptr<Address>(),
+ scoped_ptr<Address>(),
+ required_actions);
EXPECT_NE(full_wallet, different_required_actions);
}

Powered by Google App Engine
This is Rietveld 408576698