| 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/thread_task_runner_handle.h" | 10 #include "base/thread_task_runner_handle.h" |
| 11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
| 12 #include "chrome/browser/background/background_contents_service.h" | 12 #include "chrome/browser/background/background_contents_service.h" |
| 13 #include "chrome/browser/background/background_contents_service_factory.h" | 13 #include "chrome/browser/background/background_contents_service_factory.h" |
| 14 #include "chrome/browser/background/background_mode_manager.h" | 14 #include "chrome/browser/background/background_mode_manager.h" |
| 15 #include "chrome/browser/browser_process.h" | 15 #include "chrome/browser/browser_process.h" |
| 16 #include "chrome/browser/extensions/extension_apitest.h" | 16 #include "chrome/browser/extensions/extension_apitest.h" |
| 17 #include "chrome/browser/extensions/extension_service.h" | 17 #include "chrome/browser/extensions/extension_service.h" |
| 18 #include "chrome/browser/profiles/profile.h" | 18 #include "chrome/browser/profiles/profile.h" |
| 19 #include "chrome/browser/task_manager/task_manager_browsertest_util.h" | |
| 20 #include "chrome/browser/ui/browser.h" | 19 #include "chrome/browser/ui/browser.h" |
| 21 #include "chrome/browser/ui/browser_dialogs.h" | 20 #include "chrome/browser/ui/browser_dialogs.h" |
| 22 #include "chrome/browser/ui/browser_window.h" | 21 #include "chrome/browser/ui/browser_window.h" |
| 23 #include "chrome/browser/ui/extensions/application_launch.h" | 22 #include "chrome/browser/ui/extensions/application_launch.h" |
| 24 #include "chrome/common/chrome_paths.h" | 23 #include "chrome/common/chrome_paths.h" |
| 25 #include "chrome/common/chrome_switches.h" | 24 #include "chrome/common/chrome_switches.h" |
| 26 #include "content/public/browser/notification_service.h" | 25 #include "content/public/browser/notification_service.h" |
| 27 #include "content/public/test/test_notification_tracker.h" | 26 #include "content/public/test/test_notification_tracker.h" |
| 28 #include "content/public/test/test_utils.h" | 27 #include "content/public/test/test_utils.h" |
| 29 #include "extensions/browser/process_manager.h" | 28 #include "extensions/browser/process_manager.h" |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 extensions::ProcessManager::Get(browser()->profile()); | 633 extensions::ProcessManager::Get(browser()->profile()); |
| 635 ImpulseCallbackCounter idle_impulse_counter(manager, extension()->id()); | 634 ImpulseCallbackCounter idle_impulse_counter(manager, extension()->id()); |
| 636 EXPECT_TRUE(nacl_modules_loaded.WaitUntilSatisfied()); | 635 EXPECT_TRUE(nacl_modules_loaded.WaitUntilSatisfied()); |
| 637 | 636 |
| 638 manager->SetKeepaliveImpulseDecrementCallbackForTesting( | 637 manager->SetKeepaliveImpulseDecrementCallbackForTesting( |
| 639 idle_impulse_counter.SetGoalAndGetCallback(1)); | 638 idle_impulse_counter.SetGoalAndGetCallback(1)); |
| 640 nacl_modules_loaded.Reply("be idle"); | 639 nacl_modules_loaded.Reply("be idle"); |
| 641 idle_impulse_counter.Wait(); | 640 idle_impulse_counter.Wait(); |
| 642 #endif | 641 #endif |
| 643 } | 642 } |
| OLD | NEW |