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

Side by Side Diff: src/trusted/plugin/srt_socket.h

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
« no previous file with comments | « src/trusted/plugin/srpc_client.cc ('k') | src/trusted/plugin/srt_socket.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // A representation of a connected socket connection to the service runtime. 7 // A representation of a connected socket connection to the service runtime.
8 8
9 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_SRT_SOCKET_H_ 9 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRT_SOCKET_H_
10 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_SRT_SOCKET_H_ 10 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRT_SOCKET_H_
11 11
12 #include "native_client/src/include/nacl_macros.h" 12 #include "native_client/src/include/nacl_macros.h"
13 #include "native_client/src/include/nacl_string.h" 13 #include "native_client/src/include/nacl_string.h"
14 #include "native_client/src/shared/imc/nacl_imc.h" 14 #include "native_client/src/shared/imc/nacl_imc.h"
15 #include "native_client/src/trusted/plugin/srpc/connected_socket.h" 15 #include "native_client/src/trusted/plugin/connected_socket.h"
16 #include "native_client/src/trusted/plugin/srpc/scriptable_handle.h" 16 #include "native_client/src/trusted/plugin/scriptable_handle.h"
17 17
18 struct NaClDesc; 18 struct NaClDesc;
19 19
20 namespace plugin { 20 namespace plugin {
21 21
22 class SrtSocket { 22 class SrtSocket {
23 public: 23 public:
24 SrtSocket(ScriptableHandle* s, BrowserInterface* browser_interface); 24 SrtSocket(ScriptableHandle* s, BrowserInterface* browser_interface);
25 ~SrtSocket(); 25 ~SrtSocket();
26 26
(...skipping 10 matching lines...) Expand all
37 } 37 }
38 38
39 private: 39 private:
40 NACL_DISALLOW_COPY_AND_ASSIGN(SrtSocket); 40 NACL_DISALLOW_COPY_AND_ASSIGN(SrtSocket);
41 ScriptableHandle* connected_socket_; 41 ScriptableHandle* connected_socket_;
42 BrowserInterface* browser_interface_; 42 BrowserInterface* browser_interface_;
43 }; // class SrtSocket 43 }; // class SrtSocket
44 44
45 } // namespace plugin 45 } // namespace plugin
46 46
47 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_SRT_SOCKET_H_ 47 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRT_SOCKET_H_
OLDNEW
« no previous file with comments | « src/trusted/plugin/srpc_client.cc ('k') | src/trusted/plugin/srt_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698