| Index: mojo/service_manager/background_shell_service_loader_unittest.cc
|
| diff --git a/mojo/service_manager/background_shell_service_loader_unittest.cc b/mojo/service_manager/background_shell_service_loader_unittest.cc
|
| index 4674ccbe3a8f12cc5ab4ce3ddbd817d85e49f583..7469b0f7bb3ab4e2412a3bc805ad4746395012aa 100644
|
| --- a/mojo/service_manager/background_shell_service_loader_unittest.cc
|
| +++ b/mojo/service_manager/background_shell_service_loader_unittest.cc
|
| @@ -52,19 +52,4 @@ TEST(BackgroundShellServiceLoaderTest, Load) {
|
| loader.LoadService(NULL, GURL(), dummy.handle0.Pass());
|
| }
|
|
|
| -// Test that an app that doesn't quit itself can still be handled.
|
| -// TODO(tim): Remove this.
|
| -TEST(BackgroundShellServiceLoaderTest, LoadMisbehavedService) {
|
| - scoped_ptr<DummyLoader> real_loader(new DummyLoader());
|
| - real_loader->DontSimulateAppQuit();
|
| - BackgroundShellServiceLoader loader(
|
| - real_loader.PassAs<ServiceLoader>(), "test",
|
| - base::MessageLoop::TYPE_DEFAULT);
|
| - // Because this app is mis-behaved (doesn't quit itself), we need to
|
| - // explicitly kill the thread.
|
| - loader.set_quit_on_shutdown();
|
| - MessagePipe dummy;
|
| - loader.LoadService(NULL, GURL(), dummy.handle0.Pass());
|
| -}
|
| -
|
| } // namespace mojo
|
|
|