summaryrefslogtreecommitdiffstats
path: root/ppapi/c/dev/ppb_crypto_dev.h
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/c/dev/ppb_crypto_dev.h')
-rw-r--r--ppapi/c/dev/ppb_crypto_dev.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ppapi/c/dev/ppb_crypto_dev.h b/ppapi/c/dev/ppb_crypto_dev.h
index 27ef6ac9..732d3dc 100644
--- a/ppapi/c/dev/ppb_crypto_dev.h
+++ b/ppapi/c/dev/ppb_crypto_dev.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
+/* Copyright (c) 2012 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.
*/
@@ -11,7 +11,7 @@
#define PPB_CRYPTO_DEV_INTERFACE_0_1 "PPB_Crypto(Dev);0.1"
#define PPB_CRYPTO_DEV_INTERFACE PPB_CRYPTO_DEV_INTERFACE_0_1
-struct PPB_Crypto_Dev {
+struct PPB_Crypto_Dev_0_1 {
/**
* Fills the given buffer with random bytes. This is potentially slow so only
* request the amount of data you need.
@@ -19,4 +19,6 @@ struct PPB_Crypto_Dev {
void (*GetRandomBytes)(char* buffer, uint32_t num_bytes);
};
+typedef struct PPB_Crypto_Dev_0_1 PPB_Crypto_Dev;
+
#endif