summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_host.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-29 00:54:13 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-29 00:54:13 +0000
commit1c32402767e49d21eea7470cd7b89f682755d391 (patch)
treed3a11c042eb63dcb1032002038a987d0c191926e /webkit/appcache/appcache_host.cc
parentd4bc96e84f87586da6a312a3c8eed3a12b3221d3 (diff)
downloadchromium_src-1c32402767e49d21eea7470cd7b89f682755d391.zip
chromium_src-1c32402767e49d21eea7470cd7b89f682755d391.tar.gz
chromium_src-1c32402767e49d21eea7470cd7b89f682755d391.tar.bz2
webkit: Append base:: in the StringPrintf calls.
(Note: This is a TODO in string_util.h) BUG=None TEST=None Review URL: http://codereview.chromium.org/3404027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60885 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_host.cc')
-rw-r--r--webkit/appcache/appcache_host.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/appcache/appcache_host.cc b/webkit/appcache/appcache_host.cc
index 1f1b5da..f11293d 100644
--- a/webkit/appcache/appcache_host.cc
+++ b/webkit/appcache/appcache_host.cc
@@ -6,6 +6,7 @@
#include "base/logging.h"
#include "base/string_util.h"
+#include "base/stringprintf.h"
#include "webkit/appcache/appcache.h"
#include "webkit/appcache/appcache_backend_impl.h"
#include "webkit/appcache/appcache_request_handler.h"
@@ -357,7 +358,7 @@ void AppCacheHost::FinishCacheSelection(
"Document was loaded from Application Cache with manifest %s";
frontend_->OnLogMessage(
host_id_, LOG_INFO,
- StringPrintf(
+ base::StringPrintf(
kFormatString, owing_group->manifest_url().spec().c_str()));
AssociateCache(cache);
if (!owing_group->is_obsolete() && !owing_group->is_being_deleted()) {
@@ -377,7 +378,8 @@ void AppCacheHost::FinishCacheSelection(
"Creating Application Cache with manifest %s";
frontend_->OnLogMessage(
host_id_, LOG_INFO,
- StringPrintf(kFormatString, group->manifest_url().spec().c_str()));
+ base::StringPrintf(kFormatString,
+ group->manifest_url().spec().c_str()));
AssociateCache(NULL); // The UpdateJob may produce one for us later.
group->StartUpdateWithNewMasterEntry(this, new_master_entry_url_);
ObserveGroupBeingUpdated(group);