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

Side by Side Diff: ppapi/c/private/ppb_gpu_blacklist_private.h

Issue 7790016: Hookup Gpu blacklist with NaCl Pepper3D access. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5 #ifndef PPAPI_C_PRIVATE_PPB_GPU_BLACKLIST_PRIVATE_H_
6 #define PPAPI_C_PRIVATE_PPB_GPU_BLACKLIST_PRIVATE_H_
7
8 #define PPB_GPU_BLACKLIST_INTERFACE "PPB_GpuBlacklist_Private;0.1"
9
10 struct PPB_GpuBlacklist_Private {
11 /*
12 * IsGpuBlacklisted is a pointer to a function which answers if untrusted
13 * NativeClient applications can access Pepper 3D or not.
14 */
15 bool (*IsGpuBlacklisted)();
16 };
17
18 #endif /* PPAPI_C_PRIVATE_PPB_GPU_BLACKLIST_PRIVATE_H_ */
19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698