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

Unified Diff: remoting/host/branding.cc

Issue 10073028: Avoiding unnecessary conversion to UTF16 in runtime. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
« no previous file with comments | « remoting/host/branding.h ('k') | remoting/host/elevated_controller_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/branding.cc
diff --git a/remoting/host/branding.cc b/remoting/host/branding.cc
index 1316139a28606c66c706a23a2cf2017700d0c30f..956f36ef619c53b4c14eb6dfc14d22037e99f0cb 100644
--- a/remoting/host/branding.cc
+++ b/remoting/host/branding.cc
@@ -6,6 +6,7 @@
#include "base/file_util.h"
#include "base/path_service.h"
+#include "base/stringize_macros.h"
namespace {
@@ -35,7 +36,7 @@ const FilePath::CharType kConfigDir[] =
namespace remoting {
#if defined(OS_WIN)
-const char kWindowsServiceName[] = "chromoting";
+const char16 kWindowsServiceName[] = TO_L_STRING("chromoting");
#endif
FilePath GetConfigDir() {
« no previous file with comments | « remoting/host/branding.h ('k') | remoting/host/elevated_controller_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698