OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |