| OLD | NEW |
| 1 // Copyright (c) 2012 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 #ifndef SANDBOX_WIN_SRC_APP_CONTAINER_H_ | 5 #ifndef SANDBOX_WIN_SRC_APP_CONTAINER_H_ |
| 6 #define SANDBOX_WIN_SRC_APP_CONTAINER_H_ | 6 #define SANDBOX_WIN_SRC_APP_CONTAINER_H_ |
| 7 | 7 |
| 8 #include <windows.h> | 8 #include <windows.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "sandbox/win/src/sandbox_types.h" | 14 #include "sandbox/win/src/sandbox_types.h" |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 namespace win { | 17 namespace win { |
| 18 class StartupInformation; | 18 class StartupInformation; |
| 19 } | 19 } |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace sandbox { | 22 namespace sandbox { |
| 23 | 23 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 // CreateAppContainer. | 59 // CreateAppContainer. |
| 60 ResultCode DeleteAppContainer(const string16& sid); | 60 ResultCode DeleteAppContainer(const string16& sid); |
| 61 | 61 |
| 62 // Retrieves the name associated with the provided AppContainer sid. Returns an | 62 // Retrieves the name associated with the provided AppContainer sid. Returns an |
| 63 // empty string if the AppContainer is not registered with the system. | 63 // empty string if the AppContainer is not registered with the system. |
| 64 string16 LookupAppContainer(const string16& sid); | 64 string16 LookupAppContainer(const string16& sid); |
| 65 | 65 |
| 66 } // namespace sandbox | 66 } // namespace sandbox |
| 67 | 67 |
| 68 #endif // SANDBOX_WIN_SRC_APP_CONTAINER_H_ | 68 #endif // SANDBOX_WIN_SRC_APP_CONTAINER_H_ |
| OLD | NEW |