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

Side by Side Diff: ppapi/native_client/src/trusted/plugin/service_runtime.h

Issue 8527020: Cleanup: Remove unneeded forward declarations in ppapi. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 | « ppapi/native_client/src/trusted/plugin/scriptable_handle.h ('k') | ppapi/proxy/dispatcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « ppapi/native_client/src/trusted/plugin/scriptable_handle.h ('k') | ppapi/proxy/dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698