Chromium Code Reviews| Index: content/ppapi_plugin/plugin_process_dispatcher.cc |
| diff --git a/content/ppapi_plugin/plugin_process_dispatcher.cc b/content/ppapi_plugin/plugin_process_dispatcher.cc |
| index 1ac23d14795e783679d3ffc559d74fe5d0252411..a2b77e95bb9f441745295d1964614f2d5097ce18 100644 |
| --- a/content/ppapi_plugin/plugin_process_dispatcher.cc |
| +++ b/content/ppapi_plugin/plugin_process_dispatcher.cc |
| @@ -11,7 +11,8 @@ |
| namespace { |
| // How long we wait before releasing the plugin process. |
| -const int kPluginReleaseTimeMs = 30 * 1000; // 30 seconds. |
| +const base::TimeDelta kPluginReleaseTime = |
|
brettw
2012/01/15 17:28:15
I don't think we want this static class, right? I'
|
| + base::TimeDelta::FromSeconds(30); |
| } // namespace |
| @@ -32,5 +33,5 @@ PluginProcessDispatcher::~PluginProcessDispatcher() { |
| FROM_HERE, |
| base::Bind(&ChildProcess::ReleaseProcess, |
| base::Unretained(ChildProcess::current())), |
| - kPluginReleaseTimeMs); |
| + kPluginReleaseTime); |
| } |