OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ppapi/proxy/ppb_instance_proxy.h" | 5 #include "ppapi/proxy/ppb_instance_proxy.h" |
6 | 6 |
7 #include "ppapi/c/pp_errors.h" | 7 #include "ppapi/c/pp_errors.h" |
8 #include "ppapi/c/pp_time.h" | 8 #include "ppapi/c/pp_time.h" |
9 #include "ppapi/c/pp_var.h" | 9 #include "ppapi/c/pp_var.h" |
10 #include "ppapi/c/ppb_audio_config.h" | 10 #include "ppapi/c/ppb_audio_config.h" |
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 | 550 |
551 void PPB_Instance_Proxy::KeyError(PP_Instance instance, | 551 void PPB_Instance_Proxy::KeyError(PP_Instance instance, |
552 PP_Var key_system, | 552 PP_Var key_system, |
553 PP_Var session_id, | 553 PP_Var session_id, |
554 uint16_t media_error, | 554 uint16_t media_error, |
555 uint16_t system_error) { | 555 uint16_t system_error) { |
556 } | 556 } |
557 | 557 |
558 void PPB_Instance_Proxy::DeliverBlock(PP_Instance instance, | 558 void PPB_Instance_Proxy::DeliverBlock(PP_Instance instance, |
559 PP_Resource decrypted_block, | 559 PP_Resource decrypted_block, |
560 PP_CompletionCallback callback) { | 560 uint32_t id) { |
561 } | 561 } |
562 | 562 |
563 void PPB_Instance_Proxy::DeliverFrame(PP_Instance instance, | 563 void PPB_Instance_Proxy::DeliverFrame(PP_Instance instance, |
564 PP_Resource decrypted_frame, | 564 PP_Resource decrypted_frame, |
565 PP_CompletionCallback callback) { | 565 PP_CompletionCallback callback) { |
566 } | 566 } |
567 | 567 |
568 void PPB_Instance_Proxy::DeliverSamples(PP_Instance instance, | 568 void PPB_Instance_Proxy::DeliverSamples(PP_Instance instance, |
569 PP_Resource decrypted_samples, | 569 PP_Resource decrypted_samples, |
570 PP_CompletionCallback callback) { | 570 PP_CompletionCallback callback) { |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 } | 835 } |
836 | 836 |
837 void PPB_Instance_Proxy::MouseLockCompleteInHost(int32_t result, | 837 void PPB_Instance_Proxy::MouseLockCompleteInHost(int32_t result, |
838 PP_Instance instance) { | 838 PP_Instance instance) { |
839 dispatcher()->Send(new PpapiMsg_PPBInstance_MouseLockComplete( | 839 dispatcher()->Send(new PpapiMsg_PPBInstance_MouseLockComplete( |
840 API_ID_PPB_INSTANCE, instance, result)); | 840 API_ID_PPB_INSTANCE, instance, result)); |
841 } | 841 } |
842 | 842 |
843 } // namespace proxy | 843 } // namespace proxy |
844 } // namespace ppapi | 844 } // namespace ppapi |
OLD | NEW |