| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/base_switches.h" | 5 #include "base/base_switches.h" |
| 6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
| 7 #include "base/memory/memory_pressure_listener.h" | 7 #include "base/memory/memory_pressure_listener.h" |
| 8 #include "build/build_config.h" |
| 8 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
| 9 #include "chrome/browser/memory/tab_manager.h" | 10 #include "chrome/browser/memory/tab_manager.h" |
| 10 #include "chrome/browser/memory/tab_manager_web_contents_data.h" | 11 #include "chrome/browser/memory/tab_manager_web_contents_data.h" |
| 11 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
| 12 #include "chrome/browser/ui/browser_commands.h" | 13 #include "chrome/browser/ui/browser_commands.h" |
| 13 #include "chrome/browser/ui/find_bar/find_bar_controller.h" | 14 #include "chrome/browser/ui/find_bar/find_bar_controller.h" |
| 14 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 15 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 15 #include "chrome/common/chrome_switches.h" | 16 #include "chrome/common/chrome_switches.h" |
| 16 #include "chrome/common/url_constants.h" | 17 #include "chrome/common/url_constants.h" |
| 17 #include "chrome/test/base/in_process_browser_test.h" | 18 #include "chrome/test/base/in_process_browser_test.h" |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 ui_test_utils::BROWSER_TEST_WAIT_FOR_NAVIGATION); | 273 ui_test_utils::BROWSER_TEST_WAIT_FOR_NAVIGATION); |
| 273 | 274 |
| 274 // No discarding should be possible as the only background tab is displaying a | 275 // No discarding should be possible as the only background tab is displaying a |
| 275 // PDF page, hence protected. | 276 // PDF page, hence protected. |
| 276 EXPECT_FALSE(tab_manager->DiscardTab()); | 277 EXPECT_FALSE(tab_manager->DiscardTab()); |
| 277 } | 278 } |
| 278 | 279 |
| 279 } // namespace memory | 280 } // namespace memory |
| 280 | 281 |
| 281 #endif // OS_WIN || OS_CHROMEOS | 282 #endif // OS_WIN || OS_CHROMEOS |
| OLD | NEW |