Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: src/trusted/plugin/portable_handle.cc

Issue 2981011: Move plugin/srpc contents to the more appropriately named plugin/common.... (Closed) Base URL: http://nativeclient.googlecode.com/svn/trunk/src/native_client/
Patch Set: '' Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:mergeinfo
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/trusted/plugin/portable_handle.h ('k') | src/trusted/plugin/ppapi/browser_interface_ppapi.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698