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

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

Issue 10689012: Add ability to load pnacl resources from DIR_PNACL_COMPONENT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: PP_FileHandle Created 8 years, 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_ 5 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_
6 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_ 6 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_
7 7
8 #include <set> 8 #include <set>
9 #include <map> 9 #include <map>
10 #include <vector> 10 #include <vector>
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 // was already run/consumed. 233 // was already run/consumed.
234 bool error_already_reported_; 234 bool error_already_reported_;
235 235
236 // True if compilation is off_the_record. 236 // True if compilation is off_the_record.
237 bool off_the_record_; 237 bool off_the_record_;
238 238
239 // The helper thread used to do translations via SRPC. 239 // The helper thread used to do translations via SRPC.
240 // Keep this last in declaration order to ensure the other variables 240 // Keep this last in declaration order to ensure the other variables
241 // haven't been destroyed yet when its destructor runs. 241 // haven't been destroyed yet when its destructor runs.
242 nacl::scoped_ptr<PnaclTranslateThread> translate_thread_; 242 nacl::scoped_ptr<PnaclTranslateThread> translate_thread_;
243
244 }; 243 };
245 244
246 //---------------------------------------------------------------------- 245 //----------------------------------------------------------------------
247 246
248 } // namespace plugin; 247 } // namespace plugin;
249 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_ 248 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698