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

Unified Diff: chrome/browser/sync_file_system/drive_file_sync_client.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/sync_file_system/drive_file_sync_client.cc
diff --git a/chrome/browser/sync_file_system/drive_file_sync_client.cc b/chrome/browser/sync_file_system/drive_file_sync_client.cc
index b6c8095be7db9cb0cd56bb55ae54f4230573c174..7f8903a9453f5afcd3bdebcbb71a5c44468dfc66 100644
--- a/chrome/browser/sync_file_system/drive_file_sync_client.cc
+++ b/chrome/browser/sync_file_system/drive_file_sync_client.cc
@@ -129,7 +129,7 @@ DriveFileSyncClient::DriveFileSyncClient(Profile* profile)
drive_service_.reset(new google_apis::GDataWapiService(
profile->GetRequestContext(),
GURL(google_apis::GDataWapiUrlGenerator::kBaseUrlForProduction),
- "" /* custom_user_agent */));
+ std::string() /* custom_user_agent */));
drive_service_->Initialize(profile);
drive_service_->AddObserver(this);
net::NetworkChangeNotifier::AddConnectionTypeObserver(this);

Powered by Google App Engine
This is Rietveld 408576698