| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_NEXE_LOAD_MANAGER_H_ | 5 #ifndef COMPONENTS_NACL_RENDERER_NEXE_LOAD_MANAGER_H_ |
| 6 #define COMPONENTS_NACL_RENDERER_NEXE_LOAD_MANAGER_H_ | 6 #define COMPONENTS_NACL_RENDERER_NEXE_LOAD_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 void set_pnacl_start_time(base::Time time) { | 114 void set_pnacl_start_time(base::Time time) { |
| 115 pnacl_start_time_ = time; | 115 pnacl_start_time_ = time; |
| 116 } | 116 } |
| 117 | 117 |
| 118 const std::string& program_url() const { return program_url_; } | 118 const std::string& program_url() const { return program_url_; } |
| 119 | 119 |
| 120 void set_crash_info_shmem_handle(base::SharedMemoryHandle h) { | 120 void set_crash_info_shmem_handle(base::SharedMemoryHandle h) { |
| 121 crash_info_shmem_handle_ = h; | 121 crash_info_shmem_handle_ = h; |
| 122 } | 122 } |
| 123 | 123 |
| 124 bool nonsfi() const { return nonsfi_; } |
| 125 void set_nonsfi(bool nonsfi) { nonsfi_ = nonsfi; } |
| 126 |
| 124 private: | 127 private: |
| 125 DISALLOW_COPY_AND_ASSIGN(NexeLoadManager); | 128 DISALLOW_COPY_AND_ASSIGN(NexeLoadManager); |
| 126 | 129 |
| 127 explicit NexeLoadManager(PP_Instance instance); | 130 explicit NexeLoadManager(PP_Instance instance); |
| 128 | 131 |
| 129 void ReportDeadNexe(); | 132 void ReportDeadNexe(); |
| 130 | 133 |
| 131 // Copies a crash log to the console, one line at a time. | 134 // Copies a crash log to the console, one line at a time. |
| 132 void CopyCrashLogToJsConsole(const std::string& crash_log); | 135 void CopyCrashLogToJsConsole(const std::string& crash_log); |
| 133 | 136 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 178 |
| 176 // Arguments passed to this plugin instance from the DOM. | 179 // Arguments passed to this plugin instance from the DOM. |
| 177 std::map<std::string, std::string> args_; | 180 std::map<std::string, std::string> args_; |
| 178 | 181 |
| 179 // We store mime_type_ outside of args_ explicitly because we change it to be | 182 // We store mime_type_ outside of args_ explicitly because we change it to be |
| 180 // lowercase. | 183 // lowercase. |
| 181 std::string mime_type_; | 184 std::string mime_type_; |
| 182 | 185 |
| 183 base::Time pnacl_start_time_; | 186 base::Time pnacl_start_time_; |
| 184 | 187 |
| 188 // A flag that indicates if the plugin is using Non-SFI mode. |
| 189 bool nonsfi_; |
| 190 |
| 185 base::SharedMemoryHandle crash_info_shmem_handle_; | 191 base::SharedMemoryHandle crash_info_shmem_handle_; |
| 186 | 192 |
| 187 scoped_ptr<TrustedPluginChannel> trusted_plugin_channel_; | 193 scoped_ptr<TrustedPluginChannel> trusted_plugin_channel_; |
| 188 scoped_ptr<ManifestServiceChannel> manifest_service_channel_; | 194 scoped_ptr<ManifestServiceChannel> manifest_service_channel_; |
| 189 base::WeakPtrFactory<NexeLoadManager> weak_factory_; | 195 base::WeakPtrFactory<NexeLoadManager> weak_factory_; |
| 190 }; | 196 }; |
| 191 | 197 |
| 192 } // namespace nacl | 198 } // namespace nacl |
| 193 | 199 |
| 194 #endif // COMPONENTS_NACL_RENDERER_NEXE_LOAD_MANAGER_H_ | 200 #endif // COMPONENTS_NACL_RENDERER_NEXE_LOAD_MANAGER_H_ |
| OLD | NEW |