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

Unified Diff: net/tools/dump_cache/dump_cache.cc

Issue 3390026: net: Append base:: in the StringPrintf calls. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix include order Created 10 years, 3 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
« no previous file with comments | « net/spdy/spdy_session.cc ('k') | net/tools/dump_cache/url_to_filename_encoder_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/dump_cache/dump_cache.cc
diff --git a/net/tools/dump_cache/dump_cache.cc b/net/tools/dump_cache/dump_cache.cc
index d60faa433a6183dd70ea9e910b2efb46e0d78ac5..9644aae55fdd0918edc394959af615d0b6d66c7f 100644
--- a/net/tools/dump_cache/dump_cache.cc
+++ b/net/tools/dump_cache/dump_cache.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -13,6 +13,7 @@
#include "base/process_util.h"
#include "base/scoped_handle.h"
#include "base/string_util.h"
+#include "base/stringprintf.h"
#include "net/disk_cache/disk_format.h"
@@ -84,9 +85,9 @@ int LaunchSlave(const CommandLine& command_line,
std::wstring new_program;
if (do_upgrade)
- new_program = StringPrintf(L"%ls%d", L"dump_cache_", version);
+ new_program = base::StringPrintf(L"%ls%d", L"dump_cache_", version);
else
- new_program = StringPrintf(L"dump_cache");
+ new_program = base::StringPrintf(L"dump_cache");
hacked_command_line.insert(to_remove, new_program);
« no previous file with comments | « net/spdy/spdy_session.cc ('k') | net/tools/dump_cache/url_to_filename_encoder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698