Index: ppapi/tests/test_crypto.h |
diff --git a/ppapi/tests/test_crypto.h b/ppapi/tests/test_crypto.h |
index 681e648abe9641e6ba70776660aa2c013b431723..3be6e7449ca7f37faa9a67a58d8247a13ee6ea61 100644 |
--- a/ppapi/tests/test_crypto.h |
+++ b/ppapi/tests/test_crypto.h |
@@ -8,10 +8,9 @@ |
#include <string> |
#include <vector> |
+#include "ppapi/c/dev/ppb_crypto_dev.h" |
#include "ppapi/tests/test_case.h" |
-struct PPB_Crypto_Dev; |
- |
class TestCrypto : public TestCase { |
public: |
TestCrypto(TestingInstance* instance); |
@@ -23,7 +22,7 @@ class TestCrypto : public TestCase { |
private: |
std::string TestGetRandomBytes(); |
- const struct PPB_Crypto_Dev* crypto_interface_; |
+ const PPB_Crypto_Dev* crypto_interface_; |
}; |
#endif // PPAPI_TESTS_TEST_CRYPTO_H_ |