| Index: chrome/renderer/render_process_impl.cc
|
| ===================================================================
|
| --- chrome/renderer/render_process_impl.cc (revision 54347)
|
| +++ chrome/renderer/render_process_impl.cc (working copy)
|
| @@ -184,14 +184,12 @@
|
| }
|
|
|
| #ifndef DISABLE_NACL
|
| - if (command_line.HasSwitch(switches::kInternalNaCl)) {
|
| - std::map<std::string, uintptr_t> funcs;
|
| - funcs["launch_nacl_process"] =
|
| - reinterpret_cast<uintptr_t>(LaunchNaClProcess);
|
| - funcs["launch_nacl_process_multi_fd"] =
|
| - reinterpret_cast<uintptr_t>(LaunchNaClProcessMultiFD);
|
| - RegisterInternalNaClPlugin(funcs);
|
| - }
|
| + std::map<std::string, uintptr_t> funcs;
|
| + funcs["launch_nacl_process"] =
|
| + reinterpret_cast<uintptr_t>(LaunchNaClProcess);
|
| + funcs["launch_nacl_process_multi_fd"] =
|
| + reinterpret_cast<uintptr_t>(LaunchNaClProcessMultiFD);
|
| + RegisterInternalNaClPlugin(funcs);
|
| #endif
|
|
|
| if (!command_line.HasSwitch(switches::kDisableByteRangeSupport)) {
|
|
|