| Index: content/public/test/test_mojo_service.mojom
|
| diff --git a/content/public/test/test_mojo_service.mojom b/content/public/test/test_mojo_service.mojom
|
| index ff845e801b2ffb84ea20f6f1ba0e20fe0db0451d..06760f132022a1f514015d1a0337063bd44419fd 100644
|
| --- a/content/public/test/test_mojo_service.mojom
|
| +++ b/content/public/test/test_mojo_service.mojom
|
| @@ -8,6 +8,13 @@ interface TestMojoService {
|
| // Doesn't actually do anything, just responds.
|
| DoSomething() => ();
|
|
|
| + // Terminates the current process to cause a connection error. Meant to test
|
| + // a connection error for the utility process.
|
| + DoTerminateProcess() => ();
|
| +
|
| + // Tries to create a temporary folder. Requires a sandbox to succeed.
|
| + CreateFolder() => (bool succeeded);
|
| +
|
| // Retrieve the requestor name as seen by the test app providing this service.
|
| GetRequestorName() => (string name);
|
| };
|
|
|