diff options
author | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-29 19:25:38 +0000 |
---|---|---|
committer | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-29 19:25:38 +0000 |
commit | c8423065a0054dc81e72801dfd60b99483f70b79 (patch) | |
tree | c23140bb47c7edfb80309ffa767ba301167acb8b /ppapi/tests/test_video_decoder.h | |
parent | 94bef5ad7ddd08327f7d80d50a187c86d78fccf7 (diff) | |
download | chromium_src-c8423065a0054dc81e72801dfd60b99483f70b79.zip chromium_src-c8423065a0054dc81e72801dfd60b99483f70b79.tar.gz chromium_src-c8423065a0054dc81e72801dfd60b99483f70b79.tar.bz2 |
PPB_VideoDecoder_Dev::Initialize is now synchronous!
Apparently flash can't deal with async init, so we make it synchronous.
We keep processing in the GPU process asynchronous and just take the blocking
hit on the renderer.
BUG=none
TEST=gles2, ovdatest, trybots
Review URL: http://codereview.chromium.org/7474006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94730 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/tests/test_video_decoder.h')
-rw-r--r-- | ppapi/tests/test_video_decoder.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ppapi/tests/test_video_decoder.h b/ppapi/tests/test_video_decoder.h index dbef66f..7409b4e 100644 --- a/ppapi/tests/test_video_decoder.h +++ b/ppapi/tests/test_video_decoder.h @@ -22,11 +22,10 @@ class TestVideoDecoder : public TestCase { void QuitMessageLoop(); private: - std::string TestCreateAndInitialize(); + std::string TestCreateFailure(); // Used by the tests that access the C API directly. const PPB_VideoDecoder_Dev* video_decoder_interface_; - const PPB_Var* var_interface_; }; #endif // PPAPI_TESTS_TEST_VIDEO_DECODER_H_ |