| Index: chrome/browser/io_thread_unittest.cc | 
| diff --git a/chrome/browser/io_thread_unittest.cc b/chrome/browser/io_thread_unittest.cc | 
| index ea95288d2e2e2c4d2e7d11001bb33ef6671cd67d..352d037b4cb9cd90cda2156008ac01088131441a 100644 | 
| --- a/chrome/browser/io_thread_unittest.cc | 
| +++ b/chrome/browser/io_thread_unittest.cc | 
| @@ -107,7 +107,7 @@ class IOThreadTestWithIOThreadObject : public testing::Test { | 
| protected: | 
| IOThreadTestWithIOThreadObject() | 
| : thread_bundle_(content::TestBrowserThreadBundle::REAL_IO_THREAD | | 
| -                       content::TestBrowserThreadBundle::DONT_START_THREADS) { | 
| +                       content::TestBrowserThreadBundle::DONT_CREATE_THREADS) { | 
| #if BUILDFLAG(ENABLE_EXTENSIONS) | 
| event_router_forwarder_ = new extensions::EventRouterForwarder; | 
| #endif | 
| @@ -139,7 +139,7 @@ class IOThreadTestWithIOThreadObject : public testing::Test { | 
| // Now that IOThread object is registered starting the threads will | 
| // call the IOThread::Init(). This sets up the environment needed for | 
| // these tests. | 
| -    thread_bundle_.Start(); | 
| +    thread_bundle_.CreateThreads(); | 
| } | 
|  | 
| ~IOThreadTestWithIOThreadObject() override { | 
|  |