| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/lifetime/browser_close_manager.h" | 5 #include "chrome/browser/lifetime/browser_close_manager.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 ASSERT_NO_FATAL_FAILURE(AcceptClose()); | 737 ASSERT_NO_FATAL_FAILURE(AcceptClose()); |
| 738 ASSERT_NO_FATAL_FAILURE(AcceptClose()); | 738 ASSERT_NO_FATAL_FAILURE(AcceptClose()); |
| 739 ASSERT_NO_FATAL_FAILURE(AcceptClose()); | 739 ASSERT_NO_FATAL_FAILURE(AcceptClose()); |
| 740 ASSERT_NO_FATAL_FAILURE(AcceptClose()); | 740 ASSERT_NO_FATAL_FAILURE(AcceptClose()); |
| 741 | 741 |
| 742 close_observer.Wait(); | 742 close_observer.Wait(); |
| 743 EXPECT_TRUE(browser_shutdown::IsTryingToQuit()); | 743 EXPECT_TRUE(browser_shutdown::IsTryingToQuit()); |
| 744 EXPECT_TRUE(BrowserList::GetInstance()->empty()); | 744 EXPECT_TRUE(BrowserList::GetInstance()->empty()); |
| 745 } | 745 } |
| 746 | 746 |
| 747 #if defined(OS_MACOSX) |
| 748 // Flaky on Mac OSX. See http://crbug.com/700271. |
| 749 #define MAYBE_AddBeforeUnloadDuringClosing DISABLED_AddBeforeUnloadDuringClosing |
| 750 #else |
| 751 #define MAYBE_AddBeforeUnloadDuringClosing AddBeforeUnloadDuringClosing |
| 752 #endif |
| 747 IN_PROC_BROWSER_TEST_P(BrowserCloseManagerBrowserTest, | 753 IN_PROC_BROWSER_TEST_P(BrowserCloseManagerBrowserTest, |
| 748 AddBeforeUnloadDuringClosing) { | 754 MAYBE_AddBeforeUnloadDuringClosing) { |
| 749 // TODO(crbug.com/250305): Currently FastUnloadController is broken. | 755 // TODO(crbug.com/250305): Currently FastUnloadController is broken. |
| 750 // And it is difficult to fix this issue without fixing that one. | 756 // And it is difficult to fix this issue without fixing that one. |
| 751 if (GetParam()) | 757 if (GetParam()) |
| 752 return; | 758 return; |
| 753 | 759 |
| 754 ASSERT_TRUE(embedded_test_server()->Start()); | 760 ASSERT_TRUE(embedded_test_server()->Start()); |
| 755 ASSERT_NO_FATAL_FAILURE(ui_test_utils::NavigateToURL( | 761 ASSERT_NO_FATAL_FAILURE(ui_test_utils::NavigateToURL( |
| 756 browser(), embedded_test_server()->GetURL("/title1.html"))); | 762 browser(), embedded_test_server()->GetURL("/title1.html"))); |
| 757 | 763 |
| 758 // Open second window. | 764 // Open second window. |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1281 | 1287 |
| 1282 chrome::CloseAllBrowsers(); | 1288 chrome::CloseAllBrowsers(); |
| 1283 EXPECT_FALSE(browser_shutdown::IsTryingToQuit()); | 1289 EXPECT_FALSE(browser_shutdown::IsTryingToQuit()); |
| 1284 EXPECT_TRUE(BrowserList::GetInstance()->empty()); | 1290 EXPECT_TRUE(BrowserList::GetInstance()->empty()); |
| 1285 EXPECT_TRUE(IsBackgroundModeSuspended()); | 1291 EXPECT_TRUE(IsBackgroundModeSuspended()); |
| 1286 } | 1292 } |
| 1287 | 1293 |
| 1288 INSTANTIATE_TEST_CASE_P(BrowserCloseManagerWithBackgroundModeBrowserTest, | 1294 INSTANTIATE_TEST_CASE_P(BrowserCloseManagerWithBackgroundModeBrowserTest, |
| 1289 BrowserCloseManagerWithBackgroundModeBrowserTest, | 1295 BrowserCloseManagerWithBackgroundModeBrowserTest, |
| 1290 testing::Bool()); | 1296 testing::Bool()); |
| OLD | NEW |