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

Unified Diff: chrome/browser/extensions/api/identity/identity_apitest.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: chrome/browser/extensions/api/identity/identity_apitest.cc
diff --git a/chrome/browser/extensions/api/identity/identity_apitest.cc b/chrome/browser/extensions/api/identity/identity_apitest.cc
index b6fec79dab92e89b703c2f0408457ae89ff8388a..174f92250474aede58239dd8fd35b578bcf5666f 100644
--- a/chrome/browser/extensions/api/identity/identity_apitest.cc
+++ b/chrome/browser/extensions/api/identity/identity_apitest.cc
@@ -508,7 +508,7 @@ class LaunchWebAuthFlowFunctionTest : public ExtensionBrowserTest {
};
IN_PROC_BROWSER_TEST_F(LaunchWebAuthFlowFunctionTest, Bounds) {
- RunAndCheckBounds("", 0, 0, 0, 0);
+ RunAndCheckBounds(std::string(), 0, 0, 0, 0);
RunAndCheckBounds("\"width\": 100, \"height\": 200", 0, 0, 100, 200);
RunAndCheckBounds("\"left\": 100, \"top\": 200", 100, 200, 0, 0);
RunAndCheckBounds(

Powered by Google App Engine
This is Rietveld 408576698