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

Unified Diff: sandbox/sandbox_poc/pocdll/invasive.cc

Issue 42013: Slight code change to make some global variables const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 9 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 | « net/url_request/url_request_job_tracker.cc ('k') | sandbox/src/service_resolver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/sandbox_poc/pocdll/invasive.cc
===================================================================
--- sandbox/sandbox_poc/pocdll/invasive.cc (revision 11293)
+++ sandbox/sandbox_poc/pocdll/invasive.cc (working copy)
@@ -172,7 +172,9 @@
wchar_t window_title[100 + 1] = {0};
::GetWindowText(hwnd, window_title, 100);
fprintf(reinterpret_cast<FILE*>(output),
- "[GRANTED] Found window 0x%p with title %S\r\n", hwnd, window_title);
+ "[GRANTED] Found window 0x%p with title %S\r\n",
+ hwnd,
+ window_title);
::CloseWindow(hwnd);
}
« no previous file with comments | « net/url_request/url_request_job_tracker.cc ('k') | sandbox/src/service_resolver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698