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

Side by Side Diff: components/nacl/renderer/plugin/service_runtime.h

Issue 876483002: NaCl: Move src/trusted/plugin/ to components/nacl/renderer/plugin/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Update #include guards Created 5 years, 10 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
OLDNEW
1 /* -*- c++ -*- */ 1 /* -*- c++ -*- */
2 /* 2 /*
3 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 * Copyright (c) 2012 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
11 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ 11 #ifndef COMPONENTS_NACL_RENDERER_PLUGIN_SERVICE_RUNTIME_H_
12 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ 12 #define COMPONENTS_NACL_RENDERER_PLUGIN_SERVICE_RUNTIME_H_
13 13
14 #include "components/nacl/renderer/plugin/utility.h"
14 #include "native_client/src/include/nacl_macros.h" 15 #include "native_client/src/include/nacl_macros.h"
15 #include "native_client/src/include/nacl_scoped_ptr.h" 16 #include "native_client/src/include/nacl_scoped_ptr.h"
16 #include "native_client/src/public/imc_types.h" 17 #include "native_client/src/public/imc_types.h"
17 #include "native_client/src/shared/platform/nacl_sync.h" 18 #include "native_client/src/shared/platform/nacl_sync.h"
18 #include "native_client/src/shared/srpc/nacl_srpc.h" 19 #include "native_client/src/shared/srpc/nacl_srpc.h"
19
20 #include "ppapi/cpp/completion_callback.h" 20 #include "ppapi/cpp/completion_callback.h"
21 #include "ppapi/native_client/src/trusted/plugin/utility.h"
22 21
23 struct NaClFileInfo; 22 struct NaClFileInfo;
24 23
25 namespace plugin { 24 namespace plugin {
26 25
27 class ErrorInfo; 26 class ErrorInfo;
28 class Plugin; 27 class Plugin;
29 class SelLdrLauncherChrome; 28 class SelLdrLauncherChrome;
30 class SrpcClient; 29 class SrpcClient;
31 class ServiceRuntime; 30 class ServiceRuntime;
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 bool start_sel_ldr_done_; 116 bool start_sel_ldr_done_;
118 bool sel_ldr_wait_timed_out_; 117 bool sel_ldr_wait_timed_out_;
119 bool start_nexe_done_; 118 bool start_nexe_done_;
120 bool nexe_started_ok_; 119 bool nexe_started_ok_;
121 120
122 NaClHandle bootstrap_channel_; 121 NaClHandle bootstrap_channel_;
123 }; 122 };
124 123
125 } // namespace plugin 124 } // namespace plugin
126 125
127 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ 126 #endif // COMPONENTS_NACL_RENDERER_PLUGIN_SERVICE_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698