Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Side by Side Diff: content/ppapi_plugin/ppapi_thread.h

Issue 1325843002: Added directwrite warmup for PPAPI processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add_win32k_enable_policy
Patch Set: Made win32k lockdown check a lazy instance. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698