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

Unified Diff: chrome/browser/memory_details.h

Issue 5968008: Update file version info/memory details/process utils to use string16.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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 | « chrome/browser/browser_about_handler.cc ('k') | chrome/browser/memory_details.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/memory_details.h
===================================================================
--- chrome/browser/memory_details.h (revision 69950)
+++ chrome/browser/memory_details.h (working copy)
@@ -10,6 +10,7 @@
#include "base/process_util.h"
#include "base/ref_counted.h"
+#include "base/string16.h"
#include "chrome/common/child_process_info.h"
// We collect data about each browser process. A browser may
@@ -26,9 +27,9 @@
// The committed bytes.
base::CommittedKBytes committed;
// The process version
- std::wstring version;
+ string16 version;
// The process product name.
- std::wstring product_name;
+ string16 product_name;
// The number of processes which this memory represents.
int num_processes;
// A process is a diagnostics process if it is rendering
@@ -37,7 +38,7 @@
// If this is a child process of Chrome, what type (i.e. plugin) it is.
ChildProcessInfo::ProcessType type;
// A collection of titles used, i.e. for a tab it'll show all the page titles.
- std::vector<std::wstring> titles;
+ std::vector<string16> titles;
};
typedef std::vector<ProcessMemoryInformation> ProcessMemoryInformationList;
@@ -49,8 +50,8 @@
~ProcessData();
ProcessData& operator=(const ProcessData& rhs);
- std::wstring name;
- std::wstring process_name;
+ string16 name;
+ string16 process_name;
ProcessMemoryInformationList processes;
};
« no previous file with comments | « chrome/browser/browser_about_handler.cc ('k') | chrome/browser/memory_details.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698