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

Unified Diff: content/browser/appcache/view_appcache_internals_job.cc

Issue 1200053004: Move more string_util functions to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | « components/url_fixer/url_fixer.cc ('k') | content/browser/download/save_package.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/appcache/view_appcache_internals_job.cc
diff --git a/content/browser/appcache/view_appcache_internals_job.cc b/content/browser/appcache/view_appcache_internals_job.cc
index 57848da3089dea2b728f0d74a14c7ee633367a67..3ef6f81c0b471787e7100026eda7a83773bc3f63 100644
--- a/content/browser/appcache/view_appcache_internals_job.cc
+++ b/content/browser/appcache/view_appcache_internals_job.cc
@@ -129,7 +129,7 @@ void EmitAppCacheInfo(const GURL& base_url,
out->append("<ul>");
EmitListItem(
kSize,
- base::UTF16ToUTF8(FormatBytesUnlocalized(info->size)),
+ base::UTF16ToUTF8(base::FormatBytesUnlocalized(info->size)),
out);
EmitListItem(
kCreationTime,
@@ -242,7 +242,7 @@ void EmitAppCacheResourceInfoVector(
iter->url, iter->response_id,
group_id),
false, false, out);
- EmitTableData(base::UTF16ToUTF8(FormatBytesUnlocalized(iter->size)),
+ EmitTableData(base::UTF16ToUTF8(base::FormatBytesUnlocalized(iter->size)),
true, false, out);
out->append("</tr>\n");
}
« no previous file with comments | « components/url_fixer/url_fixer.cc ('k') | content/browser/download/save_package.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698