OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_var.h" | 8 #include "ppapi/c/pp_var.h" |
9 #include "ppapi/c/ppb_instance.h" | 9 #include "ppapi/c/ppb_instance.h" |
10 #include "ppapi/c/ppb_messaging.h" | 10 #include "ppapi/c/ppb_messaging.h" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 : InterfaceProxy(dispatcher), | 46 : InterfaceProxy(dispatcher), |
47 callback_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) { | 47 callback_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) { |
48 } | 48 } |
49 | 49 |
50 PPB_Instance_Proxy::~PPB_Instance_Proxy() { | 50 PPB_Instance_Proxy::~PPB_Instance_Proxy() { |
51 } | 51 } |
52 | 52 |
53 // static | 53 // static |
54 const InterfaceProxy::Info* PPB_Instance_Proxy::GetInfoPrivate() { | 54 const InterfaceProxy::Info* PPB_Instance_Proxy::GetInfoPrivate() { |
55 static const Info info = { | 55 static const Info info = { |
56 ppapi::thunk::GetPPB_Instance_Private_Thunk(), | 56 ppapi::thunk::GetPPB_Instance_Private_0_1_Thunk(), |
57 PPB_INSTANCE_PRIVATE_INTERFACE, | 57 PPB_INSTANCE_PRIVATE_INTERFACE_0_1, |
58 API_ID_NONE, // 1_0 is the canonical one. | 58 API_ID_NONE, // 1_0 is the canonical one. |
59 false, | 59 false, |
60 &CreateInstanceProxy, | 60 &CreateInstanceProxy, |
61 }; | 61 }; |
62 return &info; | 62 return &info; |
63 } | 63 } |
64 | 64 |
65 bool PPB_Instance_Proxy::OnMessageReceived(const IPC::Message& msg) { | 65 bool PPB_Instance_Proxy::OnMessageReceived(const IPC::Message& msg) { |
66 // Prevent the dispatcher from going away during a call to ExecuteScript. | 66 // Prevent the dispatcher from going away during a call to ExecuteScript. |
67 // This must happen OUTSIDE of ExecuteScript since the SerializedVars use | 67 // This must happen OUTSIDE of ExecuteScript since the SerializedVars use |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
615 } | 615 } |
616 | 616 |
617 void PPB_Instance_Proxy::MouseLockCompleteInHost(int32_t result, | 617 void PPB_Instance_Proxy::MouseLockCompleteInHost(int32_t result, |
618 PP_Instance instance) { | 618 PP_Instance instance) { |
619 dispatcher()->Send(new PpapiMsg_PPBInstance_MouseLockComplete( | 619 dispatcher()->Send(new PpapiMsg_PPBInstance_MouseLockComplete( |
620 API_ID_PPB_INSTANCE, instance, result)); | 620 API_ID_PPB_INSTANCE, instance, result)); |
621 } | 621 } |
622 | 622 |
623 } // namespace proxy | 623 } // namespace proxy |
624 } // namespace ppapi | 624 } // namespace ppapi |
OLD | NEW |