OLD | NEW |
1 /* -*- c++ -*- */ | 1 /* -*- c++ -*- */ |
2 /* | 2 /* |
3 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 // A class containing information regarding a socket connection to a | 8 // A class containing information regarding a socket connection to a |
9 // service runtime instance. | 9 // service runtime instance. |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 class DescWrapper; | 29 class DescWrapper; |
30 struct SelLdrLauncher; | 30 struct SelLdrLauncher; |
31 } // namespace | 31 } // namespace |
32 | 32 |
33 namespace plugin { | 33 namespace plugin { |
34 | 34 |
35 class BrowserInterface; | 35 class BrowserInterface; |
36 class ErrorInfo; | 36 class ErrorInfo; |
37 class Plugin; | 37 class Plugin; |
38 class SrpcClient; | 38 class SrpcClient; |
39 class SrtSocket; | |
40 class ScriptableHandle; | |
41 class ServiceRuntime; | 39 class ServiceRuntime; |
42 | 40 |
43 // Callback resources are essentially our continuation state. | 41 // Callback resources are essentially our continuation state. |
44 | 42 |
45 struct LogToJavaScriptConsoleResource { | 43 struct LogToJavaScriptConsoleResource { |
46 public: | 44 public: |
47 explicit LogToJavaScriptConsoleResource(std::string msg) | 45 explicit LogToJavaScriptConsoleResource(std::string msg) |
48 : message(msg) {} | 46 : message(msg) {} |
49 std::string message; | 47 std::string message; |
50 }; | 48 }; |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 | 197 |
200 PluginReverseInterface* rev_interface_; | 198 PluginReverseInterface* rev_interface_; |
201 | 199 |
202 NaClMutex mu_; | 200 NaClMutex mu_; |
203 int exit_status_; | 201 int exit_status_; |
204 }; | 202 }; |
205 | 203 |
206 } // namespace plugin | 204 } // namespace plugin |
207 | 205 |
208 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ | 206 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ |
OLD | NEW |