| 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 COMPONENTS_NACL_RENDERER_PLUGIN_PNACL_TRANSLATE_THREAD_H_ | 5 #ifndef COMPONENTS_NACL_RENDERER_PLUGIN_PNACL_TRANSLATE_THREAD_H_ |
| 6 #define COMPONENTS_NACL_RENDERER_PLUGIN_PNACL_TRANSLATE_THREAD_H_ | 6 #define COMPONENTS_NACL_RENDERER_PLUGIN_PNACL_TRANSLATE_THREAD_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <deque> | 10 #include <deque> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 13 #include "base/macros.h" |
| 11 #include "components/nacl/renderer/plugin/plugin_error.h" | 14 #include "components/nacl/renderer/plugin/plugin_error.h" |
| 12 #include "native_client/src/include/nacl_macros.h" | 15 #include "native_client/src/include/nacl_macros.h" |
| 13 #include "native_client/src/include/nacl_scoped_ptr.h" | 16 #include "native_client/src/include/nacl_scoped_ptr.h" |
| 14 #include "native_client/src/shared/platform/nacl_sync_checked.h" | 17 #include "native_client/src/shared/platform/nacl_sync_checked.h" |
| 15 #include "native_client/src/shared/platform/nacl_threads.h" | 18 #include "native_client/src/shared/platform/nacl_threads.h" |
| 16 #include "ppapi/cpp/completion_callback.h" | 19 #include "ppapi/cpp/completion_callback.h" |
| 17 | 20 |
| 18 struct PP_PNaClOptions; | 21 struct PP_PNaClOptions; |
| 19 | 22 |
| 20 namespace nacl { | 23 namespace nacl { |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 ErrorInfo* coordinator_error_info_; | 148 ErrorInfo* coordinator_error_info_; |
| 146 PP_PNaClOptions* pnacl_options_; | 149 PP_PNaClOptions* pnacl_options_; |
| 147 std::string architecture_attributes_; | 150 std::string architecture_attributes_; |
| 148 PnaclCoordinator* coordinator_; | 151 PnaclCoordinator* coordinator_; |
| 149 private: | 152 private: |
| 150 NACL_DISALLOW_COPY_AND_ASSIGN(PnaclTranslateThread); | 153 NACL_DISALLOW_COPY_AND_ASSIGN(PnaclTranslateThread); |
| 151 }; | 154 }; |
| 152 | 155 |
| 153 } | 156 } |
| 154 #endif // COMPONENTS_NACL_RENDERER_PLUGIN_PNACL_TRANSLATE_THREAD_H_ | 157 #endif // COMPONENTS_NACL_RENDERER_PLUGIN_PNACL_TRANSLATE_THREAD_H_ |
| OLD | NEW |