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

Unified Diff: chrome/browser/ui/views/new_task_manager_view.cc

Issue 1358513003: Use correct IntToString variants in //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: chrome/browser/ui/views/new_task_manager_view.cc
diff --git a/chrome/browser/ui/views/new_task_manager_view.cc b/chrome/browser/ui/views/new_task_manager_view.cc
index 8afec24e23c09e84918d034f48d343c5880b56f0..fbcdc1e75fd7cdb3f6c30f4840be11ac4a91a97d 100644
--- a/chrome/browser/ui/views/new_task_manager_view.cc
+++ b/chrome/browser/ui/views/new_task_manager_view.cc
@@ -183,8 +183,8 @@ class TaskManagerValuesStringifier {
base::string16 GetWindowsHandlesText(int64 current, int64 peak) {
return l10n_util::GetStringFUTF16(IDS_TASK_MANAGER_HANDLES_CELL_TEXT,
- base::IntToString16(current),
- base::IntToString16(peak));
+ base::Int64ToString16(current),
+ base::Int64ToString16(peak));
}
base::string16 GetNetworkUsageText(int64 network_usage) {
@@ -1243,4 +1243,3 @@ void NewTaskManagerView::ToggleColumnVisibility(int column_id) {
}
} // namespace task_management
-
« no previous file with comments | « chrome/browser/ui/views/extensions/media_galleries_dialog_views_unittest.cc ('k') | chrome/browser/ui/webui/about_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698