| Index: chrome/app/chrome_watcher_client_unittest_win.cc
|
| diff --git a/chrome/app/chrome_watcher_client_unittest_win.cc b/chrome/app/chrome_watcher_client_unittest_win.cc
|
| index 9f371235c96b08331ff1062f84eb74d760b87c14..04db75cb477997ce8ab3455a48037d65a5ef9625 100644
|
| --- a/chrome/app/chrome_watcher_client_unittest_win.cc
|
| +++ b/chrome/app/chrome_watcher_client_unittest_win.cc
|
| @@ -124,11 +124,11 @@ MULTIPROCESS_TEST_MAIN(ChromeWatcherClientTestProcess) {
|
| class ChromeWatcherClientThread : public base::SimpleThread {
|
| public:
|
| ChromeWatcherClientThread()
|
| - : client_(base::Bind(&ChromeWatcherClientThread::GenerateCommandLine,
|
| + : SimpleThread("ChromeWatcherClientTest thread"),
|
| + client_(base::Bind(&ChromeWatcherClientThread::GenerateCommandLine,
|
| base::Unretained(this))),
|
| complete_(false, false),
|
| - result_(false),
|
| - SimpleThread("ChromeWatcherClientTest thread") {}
|
| + result_(false) {}
|
|
|
| // Waits up to |timeout| for the call to EnsureInitialized to complete. If it
|
| // does, sets |result| to the return value of EnsureInitialized and returns
|
|
|