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

Unified 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, 4 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/c/private/ppb_gpu_blacklist_private.h
===================================================================
--- ppapi/c/private/ppb_gpu_blacklist_private.h (revision 0)
+++ ppapi/c/private/ppb_gpu_blacklist_private.h (revision 0)
@@ -0,0 +1,19 @@
+/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+#ifndef PPAPI_C_PRIVATE_PPB_GPU_BLACKLIST_PRIVATE_H_
+#define PPAPI_C_PRIVATE_PPB_GPU_BLACKLIST_PRIVATE_H_
+
+#define PPB_GPU_BLACKLIST_INTERFACE "PPB_GpuBlacklist_Private;0.1"
+
+struct PPB_GpuBlacklist_Private {
+
+ /*
+ * IsGpuBlacklisted is a pointer to a function which answers if untrusted
+ * NativeClient applications could access Pepper 3D or not.
brettw 2011/08/30 15:57:36 could -> can
Zhenyao Mo 2011/09/01 18:54:41 Done.
+ */
+ bool (*IsGpuBlacklisted)();
+};
+
+#endif /* PPAPI_C_PRIVATE_PPB_GPU_BLACKLIST_PRIVATE_H_ */
Property changes on: ppapi/c/private/ppb_gpu_blacklist_private.h
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698