| Index: components/nacl/browser/nacl_process_host.cc
|
| diff --git a/components/nacl/browser/nacl_process_host.cc b/components/nacl/browser/nacl_process_host.cc
|
| index a0868b8e1bb152187d94ccd93a60626b7263e957..6de1dbe6ae7f06b62a6537e6c9481223f7051440 100644
|
| --- a/components/nacl/browser/nacl_process_host.cc
|
| +++ b/components/nacl/browser/nacl_process_host.cc
|
| @@ -810,7 +810,11 @@ void NaClProcessHost::OnPpapiChannelCreated(
|
| content::PluginService::GetInstance()->PpapiDevChannelSupported();
|
| CommandLine* cmdline = CommandLine::ForCurrentProcess();
|
| DCHECK(cmdline);
|
| - std::string flag_whitelist[] = {switches::kV, switches::kVModule};
|
| + std::string flag_whitelist[] = {
|
| + switches::kPpapiKeepAliveThrottle,
|
| + switches::kV,
|
| + switches::kVModule,
|
| + };
|
| for (size_t i = 0; i < arraysize(flag_whitelist); ++i) {
|
| std::string value = cmdline->GetSwitchValueASCII(flag_whitelist[i]);
|
| if (!value.empty()) {
|
|
|