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

Unified Diff: content/renderer/p2p/port_allocator.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: content/renderer/p2p/port_allocator.cc
diff --git a/content/renderer/p2p/port_allocator.cc b/content/renderer/p2p/port_allocator.cc
index 7d06f6e2b7329fa9fe39ef84b015c7a338ed6dd6..738011347a259a5218fae904ae236274f2a7a468 100644
--- a/content/renderer/p2p/port_allocator.cc
+++ b/content/renderer/p2p/port_allocator.cc
@@ -282,8 +282,8 @@ void P2PPortAllocatorSession::ParseRelayResponse() {
}
void P2PPortAllocatorSession::AddConfig() {
- cricket::PortConfiguration* config =
- new cricket::PortConfiguration(stun_server_address_, "", "");
+ cricket::PortConfiguration* config = new cricket::PortConfiguration(
+ stun_server_address_, std::string(), std::string());
if (allocator_->config_.legacy_relay) {
// Passing empty credentials for legacy google relay.
« no previous file with comments | « content/renderer/media/peer_connection_tracker.cc ('k') | content/renderer/pepper/pepper_device_enumeration_event_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698