OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2008 The Native Client Authors. All rights reserved. | 2 * Copyright 2008 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can | 3 * Use of this source code is governed by a BSD-style license that can |
4 * be found in the LICENSE file. | 4 * be found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 | 7 |
8 #include "native_client/src/trusted/plugin/srpc/portable_handle.h" | 8 #include "native_client/src/trusted/plugin/portable_handle.h" |
9 #include <stdio.h> | 9 #include <stdio.h> |
10 #include <string.h> | 10 #include <string.h> |
11 #include <map> | 11 #include <map> |
12 | 12 |
13 #include "native_client/src/trusted/plugin/srpc/browser_interface.h" | 13 #include "native_client/src/trusted/plugin/browser_interface.h" |
14 | 14 |
15 namespace plugin { | 15 namespace plugin { |
16 | 16 |
17 PortableHandle::PortableHandle() { | 17 PortableHandle::PortableHandle() { |
18 PLUGIN_PRINTF(("PortableHandle::PortableHandle(%p)\n", | 18 PLUGIN_PRINTF(("PortableHandle::PortableHandle(%p)\n", |
19 static_cast<void*>(this))); | 19 static_cast<void*>(this))); |
20 } | 20 } |
21 | 21 |
22 PortableHandle::~PortableHandle() { | 22 PortableHandle::~PortableHandle() { |
23 PLUGIN_PRINTF(("PortableHandle::~PortableHandle(%p)\n", | 23 PLUGIN_PRINTF(("PortableHandle::~PortableHandle(%p)\n", |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 return false; | 135 return false; |
136 } | 136 } |
137 | 137 |
138 bool PortableHandle::HasMethodEx(uintptr_t method_id, CallType call_type) { | 138 bool PortableHandle::HasMethodEx(uintptr_t method_id, CallType call_type) { |
139 UNREFERENCED_PARAMETER(method_id); | 139 UNREFERENCED_PARAMETER(method_id); |
140 UNREFERENCED_PARAMETER(call_type); | 140 UNREFERENCED_PARAMETER(call_type); |
141 return false; | 141 return false; |
142 } | 142 } |
143 | 143 |
144 } // namespace plugin | 144 } // namespace plugin |
OLD | NEW |