summaryrefslogtreecommitdiffstats
path: root/ppapi/c
diff options
context:
space:
mode:
authortsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-18 22:26:51 +0000
committertsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-18 22:26:51 +0000
commit6b4dcb07b0337d60fcd125f594f176ca0ce42566 (patch)
treedbdd5100367e1054a7c1cbc7863331e46b6a02d3 /ppapi/c
parent7c28cce9e70231f1152b325449a9ac18a95a7454 (diff)
downloadchromium_src-6b4dcb07b0337d60fcd125f594f176ca0ce42566.zip
chromium_src-6b4dcb07b0337d60fcd125f594f176ca0ce42566.tar.gz
chromium_src-6b4dcb07b0337d60fcd125f594f176ca0ce42566.tar.bz2
Let flash query the number of CPU cores present.
Review URL: https://chromiumcodereview.appspot.com/10533163 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142830 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c')
-rw-r--r--ppapi/c/private/ppb_flash.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/ppapi/c/private/ppb_flash.h b/ppapi/c/private/ppb_flash.h
index 94b4f85..fa11b80 100644
--- a/ppapi/c/private/ppb_flash.h
+++ b/ppapi/c/private/ppb_flash.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From private/ppb_flash.idl modified Fri Jun 8 15:55:46 2012. */
+/* From private/ppb_flash.idl modified Thu Jun 14 16:38:53 2012. */
#ifndef PPAPI_C_PRIVATE_PPB_FLASH_H_
#define PPAPI_C_PRIVATE_PPB_FLASH_H_
@@ -75,7 +75,11 @@ typedef enum {
*
* Returns an undefined PP_Var on invalid instance.
*/
- PP_FLASHSETTING_LANGUAGE = 4
+ PP_FLASHSETTING_LANGUAGE = 4,
+ /**
+ * Specifies the number of CPU cores that are present on the system.
+ */
+ PP_FLASHSETTING_NUMCORES = 5
} PP_FlashSetting;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FlashSetting, 4);
/**