OLD | NEW |
1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <windows.h> | 5 #include <windows.h> |
6 #include <tchar.h> | 6 #include <tchar.h> |
7 #include <shellapi.h> | 7 #include <shellapi.h> |
8 #include "sandbox/win/sandbox_poc/sandbox.h" | 8 #include "sandbox/win/sandbox_poc/sandbox.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "sandbox/win/sandbox_poc/main_ui_window.h" | 10 #include "sandbox/win/sandbox_poc/main_ui_window.h" |
11 #include "sandbox/win/src/sandbox.h" | 11 #include "sandbox/win/src/sandbox.h" |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 | 173 |
174 CloseHandle(pipe); | 174 CloseHandle(pipe); |
175 Sleep(1000); // Give a change to the debug output to arrive before the | 175 Sleep(1000); // Give a change to the debug output to arrive before the |
176 // end of the process | 176 // end of the process |
177 | 177 |
178 ::FreeLibrary(dll_module); | 178 ::FreeLibrary(dll_module); |
179 } | 179 } |
180 | 180 |
181 return 0; | 181 return 0; |
182 } | 182 } |
OLD | NEW |