Index: ppapi/tests/test_video_decoder.cc |
diff --git a/ppapi/tests/test_video_decoder.cc b/ppapi/tests/test_video_decoder.cc |
index e801e05b9067cd1c9c86c4ecd7408b87f888875a..f5d5bc0ed31bb63ee1cc05cfd1ba3f7e1b0363c5 100644 |
--- a/ppapi/tests/test_video_decoder.cc |
+++ b/ppapi/tests/test_video_decoder.cc |
@@ -38,7 +38,7 @@ std::string TestVideoDecoder::TestCreate() { |
TestCompletionCallback callback(instance_->pp_instance(), callback_type()); |
pp::Graphics3D null_graphics_3d; |
callback.WaitForResult(video_decoder.Initialize(null_graphics_3d, |
- PP_VIDEOPROFILE_VP8MAIN, |
+ PP_VIDEOPROFILE_VP8_ANY, |
kAllowSoftwareFallback, |
callback.GetCallback())); |
ASSERT_EQ(PP_ERROR_BADRESOURCE, callback.result()); |
@@ -60,7 +60,7 @@ std::string TestVideoDecoder::TestCreate() { |
pp::VideoDecoder video_decoder(instance_); |
TestCompletionCallback callback(instance_->pp_instance(), callback_type()); |
callback.WaitForResult(video_decoder.Initialize(graphics_3d_, |
- PP_VIDEOPROFILE_VP8MAIN, |
+ PP_VIDEOPROFILE_VP8_ANY, |
kAllowSoftwareFallback, |
callback.GetCallback())); |
ASSERT_EQ(PP_OK, callback.result()); |