diff options
-rw-r--r-- | chrome/test/in_process_browser_test.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/test/in_process_browser_test.cc b/chrome/test/in_process_browser_test.cc index ed03bbbe..75a9c2d 100644 --- a/chrome/test/in_process_browser_test.cc +++ b/chrome/test/in_process_browser_test.cc @@ -191,9 +191,8 @@ void InProcessBrowserTest::RunTestOnMainThreadLoop() { RunTestOnMainThread(); - BrowserList::const_reverse_iterator browser = - BrowserList::begin_last_active(); - for (; browser != BrowserList::end_last_active(); ++browser) + BrowserList::const_iterator browser = BrowserList::begin(); + for (; browser != BrowserList::end(); ++browser) (*browser)->CloseAllTabs(); // Stop the HTTP server. |