OLD | NEW |
1 // Copyright (c) 2006-2008 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 "sandbox/win/src/registry_interception.h" | 5 #include "sandbox/win/src/registry_interception.h" |
6 | 6 |
7 #include "sandbox/win/src/crosscall_client.h" | 7 #include "sandbox/win/src/crosscall_client.h" |
8 #include "sandbox/win/src/ipc_tags.h" | 8 #include "sandbox/win/src/ipc_tags.h" |
9 #include "sandbox/win/src/sandbox_factory.h" | 9 #include "sandbox/win/src/sandbox_factory.h" |
10 #include "sandbox/win/src/sandbox_nt_util.h" | 10 #include "sandbox/win/src/sandbox_nt_util.h" |
11 #include "sandbox/win/src/sharedmem_ipc_client.h" | 11 #include "sandbox/win/src/sharedmem_ipc_client.h" |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 // We do not support open_options at this time. The 2 current known values | 167 // We do not support open_options at this time. The 2 current known values |
168 // are REG_OPTION_CREATE_LINK, to open a symbolic link, and | 168 // are REG_OPTION_CREATE_LINK, to open a symbolic link, and |
169 // REG_OPTION_BACKUP_RESTORE to open the key with special privileges. | 169 // REG_OPTION_BACKUP_RESTORE to open the key with special privileges. |
170 if (NT_SUCCESS(status) || open_options != 0) | 170 if (NT_SUCCESS(status) || open_options != 0) |
171 return status; | 171 return status; |
172 | 172 |
173 return CommonNtOpenKey(status, key, desired_access, object_attributes); | 173 return CommonNtOpenKey(status, key, desired_access, object_attributes); |
174 } | 174 } |
175 | 175 |
176 } // namespace sandbox | 176 } // namespace sandbox |
OLD | NEW |