| 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 "chrome/browser/ui/tab_contents/tab_contents_iterator.h" | 5 #include "chrome/browser/ui/tab_contents/tab_contents_iterator.h" |
| 6 | 6 |
| 7 #include "base/prefs/pref_registry_simple.h" | 7 #include "base/prefs/pref_registry_simple.h" |
| 8 #include "base/prefs/testing_pref_service.h" | 8 #include "base/prefs/testing_pref_service.h" |
| 9 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
| 10 #include "chrome/browser/browser_shutdown.h" | 10 #include "chrome/browser/browser_shutdown.h" |
| 11 #include "chrome/browser/lifetime/application_lifetime.h" | 11 #include "chrome/browser/lifetime/application_lifetime.h" |
| 12 #include "chrome/browser/profiles/profile_manager.h" | 12 #include "chrome/browser/profiles/profile_manager.h" |
| 13 #include "chrome/browser/ui/browser.h" | 13 #include "chrome/browser/ui/browser.h" |
| 14 #include "chrome/browser/ui/browser_commands.h" | 14 #include "chrome/browser/ui/browser_commands.h" |
| 15 #include "chrome/browser/ui/browser_list.h" | 15 #include "chrome/browser/ui/browser_list.h" |
| 16 #include "chrome/browser/ui/host_desktop.h" | |
| 17 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 16 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 18 #include "chrome/common/pref_names.h" | 17 #include "chrome/common/pref_names.h" |
| 19 #include "chrome/test/base/browser_with_test_window_test.h" | 18 #include "chrome/test/base/browser_with_test_window_test.h" |
| 20 #include "chrome/test/base/test_browser_window.h" | 19 #include "chrome/test/base/test_browser_window.h" |
| 21 #include "chrome/test/base/testing_browser_process.h" | 20 #include "chrome/test/base/testing_browser_process.h" |
| 21 #include "ui/gfx/host_desktop_type.h" |
| 22 | 22 |
| 23 typedef BrowserWithTestWindowTest BrowserListTest; | 23 typedef BrowserWithTestWindowTest BrowserListTest; |
| 24 | 24 |
| 25 namespace { | 25 namespace { |
| 26 | 26 |
| 27 // Helper function to iterate and count all the tabs. | 27 // Helper function to iterate and count all the tabs. |
| 28 size_t CountAllTabs() { | 28 size_t CountAllTabs() { |
| 29 size_t count = 0; | 29 size_t count = 0; |
| 30 for (TabContentsIterator iterator; !iterator.done(); iterator.Next()) | 30 for (TabContentsIterator iterator; !iterator.done(); iterator.Next()) |
| 31 ++count; | 31 ++count; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 testing_browser_process->SetProfileManager(profile_manager); | 194 testing_browser_process->SetProfileManager(profile_manager); |
| 195 | 195 |
| 196 chrome::AttemptRestart(); | 196 chrome::AttemptRestart(); |
| 197 // Cancel the effects of us calling chrome::AttemptRestart. Otherwise tests | 197 // Cancel the effects of us calling chrome::AttemptRestart. Otherwise tests |
| 198 // ran after this one will fail. | 198 // ran after this one will fail. |
| 199 browser_shutdown::SetTryingToQuit(false); | 199 browser_shutdown::SetTryingToQuit(false); |
| 200 | 200 |
| 201 EXPECT_TRUE(testing_pref_service.GetBoolean(prefs::kWasRestarted)); | 201 EXPECT_TRUE(testing_pref_service.GetBoolean(prefs::kWasRestarted)); |
| 202 testing_browser_process->SetLocalState(NULL); | 202 testing_browser_process->SetLocalState(NULL); |
| 203 } | 203 } |
| OLD | NEW |