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

Unified Diff: chrome/test/chromedriver/chrome/stub_chrome.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/test/chromedriver/chrome/stub_chrome.cc
diff --git a/chrome/test/chromedriver/chrome/stub_chrome.cc b/chrome/test/chromedriver/chrome/stub_chrome.cc
index 39888a8dd095ba38e59645fd127b17d4b5ed0509..d990d4e154ef47a83f63370e33ed322b1418ee21 100644
--- a/chrome/test/chromedriver/chrome/stub_chrome.cc
+++ b/chrome/test/chromedriver/chrome/stub_chrome.cc
@@ -11,7 +11,7 @@ StubChrome::StubChrome() {}
StubChrome::~StubChrome() {}
std::string StubChrome::GetVersion() {
- return "";
+ return std::string();
}
int StubChrome::GetBuildNo() {
@@ -49,7 +49,7 @@ Status StubChrome::GetAutomationExtension(AutomationExtension** extension) {
}
std::string StubChrome::GetOperatingSystemName() {
- return "";
+ return std::string();
}
Status StubChrome::Quit() {

Powered by Google App Engine
This is Rietveld 408576698