| Index: remoting/client/plugin/chromoting_instance.cc
|
| diff --git a/remoting/client/plugin/chromoting_instance.cc b/remoting/client/plugin/chromoting_instance.cc
|
| index ae342b348bc05dbc10ebc03345b0d2464e624ed1..30b3010281525b27f9197a06b3a5e33740341d55 100644
|
| --- a/remoting/client/plugin/chromoting_instance.cc
|
| +++ b/remoting/client/plugin/chromoting_instance.cc
|
| @@ -8,7 +8,7 @@
|
| #include <vector>
|
|
|
| #include "base/message_loop.h"
|
| -#include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/task.h"
|
| #include "base/threading/thread.h"
|
| // TODO(sergeyu): We should not depend on renderer here. Instead P2P
|
| @@ -112,8 +112,9 @@ bool ChromotingInstance::Init(uint32_t argc,
|
| void ChromotingInstance::Connect(const ClientConfig& config) {
|
| DCHECK(CurrentlyOnPluginThread());
|
|
|
| - LogDebugInfo(StringPrintf("Connecting to %s as %s", config.host_jid.c_str(),
|
| - config.username.c_str()).c_str());
|
| + LogDebugInfo(base::StringPrintf("Connecting to %s as %s",
|
| + config.host_jid.c_str(),
|
| + config.username.c_str()).c_str());
|
| client_.reset(new ChromotingClient(config,
|
| &context_,
|
| host_connection_.get(),
|
|
|