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

Unified Diff: webkit/appcache/appcache_host.cc

Issue 3404027: webkit: Append base:: in the StringPrintf calls. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: 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 | « no previous file | webkit/appcache/appcache_update_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_host.cc
diff --git a/webkit/appcache/appcache_host.cc b/webkit/appcache/appcache_host.cc
index 1f1b5da8549839758939a4be50d973abe4e0170a..f11293d4567a314e6444db80d11b80f45559eea7 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);
« no previous file with comments | « no previous file | webkit/appcache/appcache_update_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698