Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1512)

Unified Diff: mojo/public/interfaces/bindings/tests/test_arrays.mojom

Issue 2250183003: Make the fuchsia mojo/public repo the source of truth. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/public/interfaces/bindings/tests/test_arrays.mojom
diff --git a/mojo/public/interfaces/bindings/tests/test_arrays.mojom b/mojo/public/interfaces/bindings/tests/test_arrays.mojom
deleted file mode 100644
index 055bb3d4843789fd7fc516977fa46f791cf6c48d..0000000000000000000000000000000000000000
--- a/mojo/public/interfaces/bindings/tests/test_arrays.mojom
+++ /dev/null
@@ -1,62 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-module mojo.test;
-
-interface TestInterface {
- Foo();
-};
-
-struct StructWithInterface {
- TestInterface iptr;
-};
-
-struct StructWithInterfaceArray {
- array<StructWithInterface> structs_array;
- array<StructWithInterface>? structs_nullable_array;
- array<StructWithInterface?> nullable_structs_array;
- array<StructWithInterface?>? nullable_structs_nullable_array;
-};
-
-struct StructWithDataPipeConsumers {
- array<handle<data_pipe_consumer>> handles_array;
- array<handle<data_pipe_consumer>>? handles_nullable_array;
- array<handle<data_pipe_consumer>?> nullable_handles_array;
- array<handle<data_pipe_consumer>?>? nullable_handles_nullable_array;
-};
-
-struct StructWithDataPipeProducers {
- array<handle<data_pipe_producer>> handles_array;
- array<handle<data_pipe_producer>>? handles_nullable_array;
- array<handle<data_pipe_producer>?> nullable_handles_array;
- array<handle<data_pipe_producer>?>? nullable_handles_nullable_array;
-};
-
-struct StructWithSharedBuffers {
- array<handle<shared_buffer>> handles_array;
- array<handle<shared_buffer>>? handles_nullable_array;
- array<handle<shared_buffer>?> nullable_handles_array;
- array<handle<shared_buffer>?>? nullable_handles_nullable_array;
-};
-
-struct StructWithMessagePipes {
- array<handle<message_pipe>> handles_array;
- array<handle<message_pipe>>? handles_nullable_array;
- array<handle<message_pipe>?> nullable_handles_array;
- array<handle<message_pipe>?>? nullable_handles_nullable_array;
-};
-
-struct StructWithHandles {
- array<handle> handles_array;
- array<handle>? handles_nullable_array;
- array<handle?> nullable_handles_array;
- array<handle?>? nullable_handles_nullable_array;
-};
-
-struct StructWithInterfaceRequests {
- array<TestInterface&> req_array;
- array<TestInterface&>? req_nullable_array;
- array<TestInterface&?> nullable_req_array;
- array<TestInterface&?>? nullable_req_nullable_array;
-};

Powered by Google App Engine
This is Rietveld 408576698