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

Unified Diff: remoting/host/sas_injector_win.cc

Issue 10579034: Removing incorrect usage of TO_L_STRING() macros. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 6 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/plugin/daemon_installer_win.cc ('k') | remoting/host/wts_session_process_launcher_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/sas_injector_win.cc
diff --git a/remoting/host/sas_injector_win.cc b/remoting/host/sas_injector_win.cc
index 0f1a1c47e867aad6958f8729f3fe8c32edd4dd6f..788612924273e588763dbeef0b783dc386e57960 100644
--- a/remoting/host/sas_injector_win.cc
+++ b/remoting/host/sas_injector_win.cc
@@ -11,7 +11,6 @@
#include "base/file_path.h"
#include "base/native_library.h"
#include "base/path_service.h"
-#include "base/stringize_macros.h"
#include "base/win/registry.h"
#include "base/win/windows_version.h"
@@ -29,10 +28,9 @@ typedef VOID (WINAPI *SendSasFunc)(BOOL);
// The registry key and value holding the policy controlling software SAS
// generation.
-const char16 kSystemPolicyKeyName[] =
- TO_L_STRING("Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\")
- TO_L_STRING("System");
-const char16 kSoftwareSasValueName[] = TO_L_STRING("SoftwareSASGeneration");
+const wchar_t kSystemPolicyKeyName[] =
+ L"Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System";
+const wchar_t kSoftwareSasValueName[] = L"SoftwareSASGeneration";
const DWORD kEnableSoftwareSasByServices = 1;
« no previous file with comments | « remoting/host/plugin/daemon_installer_win.cc ('k') | remoting/host/wts_session_process_launcher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698