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

Unified Diff: remoting/client/plugin/chromoting_instance.cc

Issue 6997006: iwyu: Include stringprintf.h where appropriate, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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: 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(),
« base/json/string_escape.cc ('K') | « printing/printed_document.cc ('k') | ui/gfx/insets.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698