diff options
Diffstat (limited to 'chrome/browser/chrome_plugin_host.cc')
-rw-r--r-- | chrome/browser/chrome_plugin_host.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chrome_plugin_host.cc b/chrome/browser/chrome_plugin_host.cc index 50b793e..761be8e 100644 --- a/chrome/browser/chrome_plugin_host.cc +++ b/chrome/browser/chrome_plugin_host.cc @@ -124,11 +124,11 @@ class PluginRequestInterceptor } void LogInterceptHitTime(const TimeDelta& time) { - UMA_HISTOGRAM_TIMES(L"Gears.InterceptHit", time); + UMA_HISTOGRAM_TIMES("Gears.InterceptHit", time); } void LogInterceptMissTime(const TimeDelta& time) { - UMA_HISTOGRAM_TIMES(L"Gears.InterceptMiss", time); + UMA_HISTOGRAM_TIMES("Gears.InterceptMiss", time); } typedef std::set<std::string> HandledProtocolList; |