diff options
Diffstat (limited to 'remoting/client/plugin/chromoting_instance.cc')
-rw-r--r-- | remoting/client/plugin/chromoting_instance.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/client/plugin/chromoting_instance.cc b/remoting/client/plugin/chromoting_instance.cc index aff8c10..057c4a1 100644 --- a/remoting/client/plugin/chromoting_instance.cc +++ b/remoting/client/plugin/chromoting_instance.cc @@ -81,7 +81,7 @@ std::string ConnectionStateToString(protocol::ConnectionToHost::State state) { return "FAILED"; } NOTREACHED(); - return ""; + return std::string(); } // TODO(sergeyu): Ideally we should just pass ErrorCode to the webapp @@ -115,7 +115,7 @@ std::string ConnectionErrorToString(protocol::ErrorCode error) { return "NETWORK_FAILURE"; } DLOG(FATAL) << "Unknown error code" << error; - return ""; + return std::string(); } // This flag blocks LOGs to the UI if we're already in the middle of logging |