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

Unified Diff: sandbox/win/src/job.cc

Issue 294753003: Fix clang -Wwritable-strings warnings in the Windows sandbox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | « sandbox/win/src/job.h ('k') | sandbox/win/src/named_pipe_policy_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/job.cc
diff --git a/sandbox/win/src/job.cc b/sandbox/win/src/job.cc
index 060ffa52438d171dbf88b65493f593a3c1dd1185..62b8d5c3c4b294844970f84cad94b207fc9cb38e 100644
--- a/sandbox/win/src/job.cc
+++ b/sandbox/win/src/job.cc
@@ -14,7 +14,8 @@ Job::~Job() {
::CloseHandle(job_handle_);
};
-DWORD Job::Init(JobLevel security_level, wchar_t *job_name,
+DWORD Job::Init(JobLevel security_level,
+ const wchar_t* job_name,
DWORD ui_exceptions) {
if (job_handle_)
return ERROR_ALREADY_INITIALIZED;
« no previous file with comments | « sandbox/win/src/job.h ('k') | sandbox/win/src/named_pipe_policy_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698