OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "chrome/tools/crash_service/crash_service.h" | 5 #include "chrome/tools/crash_service/crash_service.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 | 8 |
9 #include <iostream> | |
10 #include <fstream> | 9 #include <fstream> |
11 #include <map> | 10 #include <map> |
12 #include <sddl.h> | 11 #include <sddl.h> |
13 | 12 |
14 #include "base/command_line.h" | 13 #include "base/command_line.h" |
15 #include "base/file_util.h" | 14 #include "base/file_util.h" |
16 #include "base/logging.h" | 15 #include "base/logging.h" |
17 #include "base/path_service.h" | 16 #include "base/path_service.h" |
18 #include "base/win_util.h" | 17 #include "base/win_util.h" |
19 #include "breakpad/src/client/windows/crash_generation/crash_generation_server.h
" | 18 #include "breakpad/src/client/windows/crash_generation/crash_generation_server.h
" |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 &sec_desc, NULL)) { | 472 &sec_desc, NULL)) { |
474 if (::GetSecurityDescriptorSacl(sec_desc, &sacl_present, &sacl, | 473 if (::GetSecurityDescriptorSacl(sec_desc, &sacl_present, &sacl, |
475 &sacl_defaulted)) { | 474 &sacl_defaulted)) { |
476 return sec_desc; | 475 return sec_desc; |
477 } | 476 } |
478 } | 477 } |
479 | 478 |
480 return NULL; | 479 return NULL; |
481 } | 480 } |
482 | 481 |
OLD | NEW |