Index: chrome/common/chrome_plugin_lib.cc |
diff --git a/chrome/common/chrome_plugin_lib.cc b/chrome/common/chrome_plugin_lib.cc |
index daf6bb71e019abe8c7ea259a1e5135ea800a934e..1e74f4c42bfbde53d075d40a7a1496a8f14e1844 100644 |
--- a/chrome/common/chrome_plugin_lib.cc |
+++ b/chrome/common/chrome_plugin_lib.cc |
@@ -25,10 +25,10 @@ using base::TimeDelta; |
// TODO(port): revisit when plugins happier |
#if defined(OS_WIN) |
-const TCHAR ChromePluginLib::kRegistryChromePlugins[] = |
- _T("Software\\Google\\Chrome\\Plugins"); |
-static const TCHAR kRegistryLoadOnStartup[] = _T("LoadOnStartup"); |
-static const TCHAR kRegistryPath[] = _T("Path"); |
+const wchar_t ChromePluginLib::kRegistryChromePlugins[] = |
+ L"Software\\Google\\Chrome\\Plugins"; |
+static const wchar_t kRegistryLoadOnStartup[] = L"LoadOnStartup"; |
+static const wchar_t kRegistryPath[] = L"Path"; |
#endif |
typedef base::hash_map<FilePath, scoped_refptr<ChromePluginLib> > |