diff options
author | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-21 20:47:00 +0000 |
---|---|---|
committer | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-21 20:47:00 +0000 |
commit | d232c09f2584c80b6fde6b987fac32c8de57bfd7 (patch) | |
tree | 9e7601791ee5ccef2bef3bfde9e2eb85a5f095e3 /chrome/common/chrome_counters.cc | |
parent | 76328988113b8bfc1cda9efdc266213199d413ca (diff) | |
download | chromium_src-d232c09f2584c80b6fde6b987fac32c8de57bfd7.zip chromium_src-d232c09f2584c80b6fde6b987fac32c8de57bfd7.tar.gz chromium_src-d232c09f2584c80b6fde6b987fac32c8de57bfd7.tar.bz2 |
Remove use of wide characters in stats table identifiers.
Review URL: http://codereview.chromium.org/11544
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5847 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_counters.cc')
-rw-r--r-- | chrome/common/chrome_counters.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/common/chrome_counters.cc b/chrome/common/chrome_counters.cc index 9ac86b8..1e91528 100644 --- a/chrome/common/chrome_counters.cc +++ b/chrome/common/chrome_counters.cc @@ -20,37 +20,37 @@ namespace chrome { // would be it. But these are small objects, so this is ok. StatsCounter& Counters::ipc_send_counter() { - static StatsCounter* ctr = new StatsCounter(L"IPC.SendMsgCount"); + static StatsCounter* ctr = new StatsCounter("IPC.SendMsgCount"); return *ctr; } StatsCounterTimer& Counters::chrome_main() { - static StatsCounterTimer* ctr = new StatsCounterTimer(L"Chrome.Init"); + static StatsCounterTimer* ctr = new StatsCounterTimer("Chrome.Init"); return *ctr; } StatsCounterTimer& Counters::renderer_main() { - static StatsCounterTimer* ctr = new StatsCounterTimer(L"Chrome.RendererInit"); + static StatsCounterTimer* ctr = new StatsCounterTimer("Chrome.RendererInit"); return *ctr; } StatsCounterTimer& Counters::spellcheck_init() { - static StatsCounterTimer* ctr = new StatsCounterTimer(L"SpellCheck.Init"); + static StatsCounterTimer* ctr = new StatsCounterTimer("SpellCheck.Init"); return *ctr; } StatsRate& Counters::spellcheck_lookup() { - static StatsRate* ctr = new StatsRate(L"SpellCheck.Lookup"); + static StatsRate* ctr = new StatsRate("SpellCheck.Lookup"); return *ctr; } StatsCounterTimer& Counters::plugin_load() { - static StatsCounterTimer* ctr = new StatsCounterTimer(L"ChromePlugin.Load"); + static StatsCounterTimer* ctr = new StatsCounterTimer("ChromePlugin.Load"); return *ctr; } StatsRate& Counters::plugin_intercept() { - static StatsRate* ctr = new StatsRate(L"ChromePlugin.Intercept"); + static StatsRate* ctr = new StatsRate("ChromePlugin.Intercept"); return *ctr; } |