| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 <memory> | 5 #include <memory> |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "base/process/process.h" | 11 #include "base/process/process.h" |
| 12 #include "base/run_loop.h" | 12 #include "base/run_loop.h" |
| 13 #include "services/shell/public/cpp/identity.h" | 13 #include "services/service_manager/public/cpp/identity.h" |
| 14 #include "services/shell/public/cpp/service_test.h" | 14 #include "services/service_manager/public/cpp/service_test.h" |
| 15 #include "services/shell/public/interfaces/service_manager.mojom.h" | 15 #include "services/service_manager/public/interfaces/service_manager.mojom.h" |
| 16 #include "services/shell/tests/lifecycle/lifecycle_unittest.mojom.h" | 16 #include "services/service_manager/tests/lifecycle/lifecycle_unittest.mojom.h" |
| 17 #include "services/shell/tests/util.h" | 17 #include "services/service_manager/tests/util.h" |
| 18 | 18 |
| 19 namespace shell { | 19 namespace shell { |
| 20 | 20 |
| 21 namespace { | 21 namespace { |
| 22 | 22 |
| 23 const char kTestAppName[] = "service:lifecycle_unittest_app"; | 23 const char kTestAppName[] = "service:lifecycle_unittest_app"; |
| 24 const char kTestParentName[] = "service:lifecycle_unittest_parent"; | 24 const char kTestParentName[] = "service:lifecycle_unittest_parent"; |
| 25 const char kTestExeName[] = "exe:lifecycle_unittest_exe"; | 25 const char kTestExeName[] = "exe:lifecycle_unittest_exe"; |
| 26 const char kTestPackageName[] = "service:lifecycle_unittest_package"; | 26 const char kTestPackageName[] = "service:lifecycle_unittest_package"; |
| 27 const char kTestPackageAppNameA[] = "service:lifecycle_unittest_package_app_a"; | 27 const char kTestPackageAppNameA[] = "service:lifecycle_unittest_package_app_a"; |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 parent->Quit(); | 443 parent->Quit(); |
| 444 | 444 |
| 445 // Quitting the parent should cascade-quit the child. | 445 // Quitting the parent should cascade-quit the child. |
| 446 WaitForInstanceDestruction(); | 446 WaitForInstanceDestruction(); |
| 447 EXPECT_EQ(0u, instances()->GetNewInstanceCount()); | 447 EXPECT_EQ(0u, instances()->GetNewInstanceCount()); |
| 448 EXPECT_FALSE(instances()->HasInstanceForName(kTestParentName)); | 448 EXPECT_FALSE(instances()->HasInstanceForName(kTestParentName)); |
| 449 EXPECT_FALSE(instances()->HasInstanceForName(kTestAppName)); | 449 EXPECT_FALSE(instances()->HasInstanceForName(kTestAppName)); |
| 450 } | 450 } |
| 451 | 451 |
| 452 } // namespace shell | 452 } // namespace shell |
| OLD | NEW |