Index: ppapi/tests/test_post_message.cc |
diff --git a/ppapi/tests/test_post_message.cc b/ppapi/tests/test_post_message.cc |
index 5054a6af8fb33d847fc52b849c1b90afe785fb2d..09cdc40c7ca9c02de3310d59914a4a02cbf06167 100644 |
--- a/ppapi/tests/test_post_message.cc |
+++ b/ppapi/tests/test_post_message.cc |
@@ -9,9 +9,9 @@ |
#include "ppapi/c/dev/ppb_testing_dev.h" |
#include "ppapi/c/pp_var.h" |
-#include "ppapi/cpp/dev/var_array_buffer_dev.h" |
#include "ppapi/cpp/instance.h" |
#include "ppapi/cpp/var.h" |
+#include "ppapi/cpp/var_array_buffer.h" |
#include "ppapi/tests/pp_thread.h" |
#include "ppapi/tests/test_utils.h" |
#include "ppapi/tests/testing_instance.h" |
@@ -260,7 +260,7 @@ std::string TestPostMessage::TestSendingArrayBuffer() { |
const std::string kSizeAsString(size_stream.str()); |
// Create an appropriately sized array buffer with test_data[i] == i. |
- pp::VarArrayBuffer_Dev test_data(sizes[i]); |
+ pp::VarArrayBuffer test_data(sizes[i]); |
if (sizes[i] > 0) |
ASSERT_NE(NULL, test_data.Map()); |
ASSERT_EQ(sizes[i], test_data.ByteLength()); |
@@ -308,7 +308,7 @@ std::string TestPostMessage::TestSendingArrayBuffer() { |
ASSERT_EQ(message_data_.size(), 0); |
ASSERT_EQ(WaitForMessages(), 1); |
ASSERT_TRUE(message_data_.back().is_array_buffer()); |
- pp::VarArrayBuffer_Dev received(message_data_.back()); |
+ pp::VarArrayBuffer received(message_data_.back()); |
message_data_.clear(); |
ASSERT_EQ(test_data.ByteLength(), received.ByteLength()); |
unsigned char* received_buff = static_cast<unsigned char*>(received.Map()); |