OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <GLES2/gl2.h> | 5 #include <GLES2/gl2.h> |
6 | 6 |
7 #include "base/memory/shared_memory.h" | 7 #include "base/memory/shared_memory.h" |
8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
9 #include "ppapi/c/pp_errors.h" | 9 #include "ppapi/c/pp_errors.h" |
10 #include "ppapi/c/ppb_video_decoder.h" | 10 #include "ppapi/c/ppb_video_decoder.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 namespace ppapi { | 24 namespace ppapi { |
25 namespace proxy { | 25 namespace proxy { |
26 | 26 |
27 namespace { | 27 namespace { |
28 | 28 |
29 const PP_Resource kGraphics3D = 7; | 29 const PP_Resource kGraphics3D = 7; |
30 const uint32_t kShmSize = 256; | 30 const uint32_t kShmSize = 256; |
31 const size_t kDecodeBufferSize = 16; | 31 const size_t kDecodeBufferSize = 16; |
32 const uint32_t kDecodeId = 5; | 32 const uint32_t kDecodeId = 5; |
33 const uint32_t kTextureId1 = 1; | 33 const uint32_t kTextureId1 = 1; |
| 34 #if !defined(OS_WIN) || !defined(ARCH_CPU_64_BITS) |
34 const uint32_t kTextureId2 = 2; | 35 const uint32_t kTextureId2 = 2; |
| 36 #endif |
35 const uint32_t kNumRequestedTextures = 2; | 37 const uint32_t kNumRequestedTextures = 2; |
36 | 38 |
37 class MockCompletionCallback { | 39 class MockCompletionCallback { |
38 public: | 40 public: |
39 MockCompletionCallback() : called_(false) {} | 41 MockCompletionCallback() : called_(false) {} |
40 | 42 |
41 bool called() { return called_; } | 43 bool called() { return called_; } |
42 int32_t result() { return result_; } | 44 int32_t result() { return result_; } |
43 | 45 |
44 void Reset() { called_ = false; } | 46 void Reset() { called_ = false; } |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 ASSERT_FALSE(uncalled_cb.called()); | 574 ASSERT_FALSE(uncalled_cb.called()); |
573 ASSERT_EQ(PP_ERROR_RESOURCE_FAILED, CallFlush(decoder.get(), &uncalled_cb)); | 575 ASSERT_EQ(PP_ERROR_RESOURCE_FAILED, CallFlush(decoder.get(), &uncalled_cb)); |
574 ASSERT_FALSE(uncalled_cb.called()); | 576 ASSERT_FALSE(uncalled_cb.called()); |
575 ASSERT_EQ(PP_ERROR_RESOURCE_FAILED, CallReset(decoder.get(), &uncalled_cb)); | 577 ASSERT_EQ(PP_ERROR_RESOURCE_FAILED, CallReset(decoder.get(), &uncalled_cb)); |
576 ASSERT_FALSE(uncalled_cb.called()); | 578 ASSERT_FALSE(uncalled_cb.called()); |
577 } | 579 } |
578 #endif // !defined(OS_WIN) || !defined(ARCH_CPU_64_BITS) | 580 #endif // !defined(OS_WIN) || !defined(ARCH_CPU_64_BITS) |
579 | 581 |
580 } // namespace proxy | 582 } // namespace proxy |
581 } // namespace ppapi | 583 } // namespace ppapi |
OLD | NEW |