summaryrefslogtreecommitdiffstats
path: root/ppapi/tests/test_crypto.h
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/tests/test_crypto.h')
-rw-r--r--ppapi/tests/test_crypto.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/ppapi/tests/test_crypto.h b/ppapi/tests/test_crypto.h
index 681e648..819ad77 100644
--- a/ppapi/tests/test_crypto.h
+++ b/ppapi/tests/test_crypto.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.
@@ -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_