| Index: chrome/default_plugin/plugin_install_job_monitor.cc
|
| ===================================================================
|
| --- chrome/default_plugin/plugin_install_job_monitor.cc (revision 67155)
|
| +++ chrome/default_plugin/plugin_install_job_monitor.cc (working copy)
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/default_plugin/plugin_install_job_monitor.h"
|
|
|
| +#include "base/logging.h"
|
| #include "base/message_loop.h"
|
| #include "chrome/default_plugin/plugin_impl.h"
|
|
|
| @@ -99,6 +100,11 @@
|
| install_job_completion_port_ = NULL;
|
| }
|
|
|
| +void PluginInstallationJobMonitorThread::set_plugin_window(HWND plugin_window) {
|
| + DCHECK(::IsWindow(plugin_window));
|
| + plugin_window_ = plugin_window;
|
| +}
|
| +
|
| bool PluginInstallationJobMonitorThread::AssignProcessToJob(
|
| HANDLE process_handle) {
|
| BOOL result = AssignProcessToJobObject(install_job_, process_handle);
|
|
|