| Index: mojo/public/interfaces/bindings/tests/test_bad_messages.mojom
|
| diff --git a/cc/ipc/filter_operations.mojom b/mojo/public/interfaces/bindings/tests/test_bad_messages.mojom
|
| similarity index 50%
|
| copy from cc/ipc/filter_operations.mojom
|
| copy to mojo/public/interfaces/bindings/tests/test_bad_messages.mojom
|
| index 9e94216aefe2c30443cac53624263a9f0cfad188..dcd594754d5bc79c4c8b5649d0addfc5ed366706 100644
|
| --- a/cc/ipc/filter_operations.mojom
|
| +++ b/mojo/public/interfaces/bindings/tests/test_bad_messages.mojom
|
| @@ -2,12 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -module cc.mojom;
|
| +module mojo.test;
|
|
|
| -import "cc/ipc/filter_operation.mojom";
|
| +interface TestBadMessages {
|
| + RejectEventually() => ();
|
| + RequestResponse() => ();
|
|
|
| -// See cc/output/filter_operations.h.
|
| -struct FilterOperations {
|
| - array<cc.mojom.FilterOperation> operations;
|
| + [Sync] RejectSync() => ();
|
| + [Sync] RequestResponseSync() => ();
|
| };
|
| -
|
|
|