| 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 CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ | 5 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ |
| 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ | 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 scoped_ptr<PpapiBlinkPlatformImpl> blink_platform_impl_; | 164 scoped_ptr<PpapiBlinkPlatformImpl> blink_platform_impl_; |
| 165 | 165 |
| 166 #if defined(OS_WIN) | 166 #if defined(OS_WIN) |
| 167 // Caches the handle to the peer process if this is a broker. | 167 // Caches the handle to the peer process if this is a broker. |
| 168 base::win::ScopedHandle peer_handle_; | 168 base::win::ScopedHandle peer_handle_; |
| 169 #endif | 169 #endif |
| 170 | 170 |
| 171 DISALLOW_IMPLICIT_CONSTRUCTORS(PpapiThread); | 171 DISALLOW_IMPLICIT_CONSTRUCTORS(PpapiThread); |
| 172 }; | 172 }; |
| 173 | 173 |
| 174 bool IsWin32kLockdownEnabled(); |
| 175 |
| 174 #if defined(COMPILER_MSVC) | 176 #if defined(COMPILER_MSVC) |
| 175 #pragma warning(pop) | 177 #pragma warning(pop) |
| 176 #endif | 178 #endif |
| 177 | 179 |
| 178 } // namespace content | 180 } // namespace content |
| 179 | 181 |
| 180 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ | 182 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ |
| OLD | NEW |