| 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/location.h" | 5 #include "base/location.h" |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/single_thread_task_runner.h" | 7 #include "base/single_thread_task_runner.h" |
| 8 #include "base/strings/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "base/threading/thread_task_runner_handle.h" | 10 #include "base/threading/thread_task_runner_handle.h" |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 // the app was loaded. | 297 // the app was loaded. |
| 298 ASSERT_TRUE(WaitForBackgroundMode(true)); | 298 ASSERT_TRUE(WaitForBackgroundMode(true)); |
| 299 | 299 |
| 300 const Extension* extension = GetSingleLoadedExtension(); | 300 const Extension* extension = GetSingleLoadedExtension(); |
| 301 ASSERT_TRUE( | 301 ASSERT_TRUE( |
| 302 BackgroundContentsServiceFactory::GetForProfile(browser()->profile())-> | 302 BackgroundContentsServiceFactory::GetForProfile(browser()->profile())-> |
| 303 GetAppBackgroundContents(ASCIIToUTF16(extension->id()))); | 303 GetAppBackgroundContents(ASCIIToUTF16(extension->id()))); |
| 304 UnloadExtension(extension->id()); | 304 UnloadExtension(extension->id()); |
| 305 } | 305 } |
| 306 | 306 |
| 307 IN_PROC_BROWSER_TEST_F(AppBackgroundPageApiTest, NoJsBackgroundPage) { | 307 // TODO(crbug.com/642482) Disabled test for flakyness. |
| 308 IN_PROC_BROWSER_TEST_F(AppBackgroundPageApiTest, DISABLED_NoJsBackgroundPage) { |
| 308 // Keep the task manager up through this test to verify that a crash doesn't | 309 // Keep the task manager up through this test to verify that a crash doesn't |
| 309 // happen when window.open creates a background page that switches | 310 // happen when window.open creates a background page that switches |
| 310 // RenderViewHosts. See http://crbug.com/165138. | 311 // RenderViewHosts. See http://crbug.com/165138. |
| 311 chrome::ShowTaskManager(browser()); | 312 chrome::ShowTaskManager(browser()); |
| 312 | 313 |
| 313 // Make sure that no BackgroundContentses get deleted (a signal that repeated | 314 // Make sure that no BackgroundContentses get deleted (a signal that repeated |
| 314 // window.open calls recreate instances, instead of being no-ops). | 315 // window.open calls recreate instances, instead of being no-ops). |
| 315 content::TestNotificationTracker background_deleted_tracker; | 316 content::TestNotificationTracker background_deleted_tracker; |
| 316 background_deleted_tracker.ListenFor( | 317 background_deleted_tracker.ListenFor( |
| 317 chrome::NOTIFICATION_BACKGROUND_CONTENTS_DELETED, | 318 chrome::NOTIFICATION_BACKGROUND_CONTENTS_DELETED, |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 extensions::ProcessManager::Get(browser()->profile()); | 635 extensions::ProcessManager::Get(browser()->profile()); |
| 635 ImpulseCallbackCounter idle_impulse_counter(manager, extension()->id()); | 636 ImpulseCallbackCounter idle_impulse_counter(manager, extension()->id()); |
| 636 EXPECT_TRUE(nacl_modules_loaded.WaitUntilSatisfied()); | 637 EXPECT_TRUE(nacl_modules_loaded.WaitUntilSatisfied()); |
| 637 | 638 |
| 638 manager->SetKeepaliveImpulseDecrementCallbackForTesting( | 639 manager->SetKeepaliveImpulseDecrementCallbackForTesting( |
| 639 idle_impulse_counter.SetGoalAndGetCallback(1)); | 640 idle_impulse_counter.SetGoalAndGetCallback(1)); |
| 640 nacl_modules_loaded.Reply("be idle"); | 641 nacl_modules_loaded.Reply("be idle"); |
| 641 idle_impulse_counter.Wait(); | 642 idle_impulse_counter.Wait(); |
| 642 #endif | 643 #endif |
| 643 } | 644 } |
| OLD | NEW |