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

Unified Diff: mojo/public/java/bindings/src/org/chromium/mojo/bindings/Union.java

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/java/bindings/src/org/chromium/mojo/bindings/Union.java
diff --git a/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Union.java b/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Union.java
deleted file mode 100644
index 90b40ea57b03a599ba5b2bd38ebc56afca60c592..0000000000000000000000000000000000000000
--- a/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Union.java
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2014 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.
-
-package org.chromium.mojo.bindings;
-
-import org.chromium.mojo.system.Core;
-
-/**
- * Base class for all mojo unions.
- */
-public abstract class Union {
- /**
- * Returns the serialization of the union. This method can close Handles.
- *
- * @param core the |Core| implementation used to generate handles. Only used if the data
- * structure being encoded contains interfaces, can be |null| otherwise.
- */
- public Message serialize(Core core) {
- Encoder encoder = new Encoder(core, BindingsHelper.UNION_SIZE);
- encoder.claimMemory(16);
- encode(encoder, 0);
- return encoder.getMessage();
- }
-
- /**
- * Serializes this data structure using the given encoder.
- */
- protected abstract void encode(Encoder encoder, int offset);
-}

Powered by Google App Engine
This is Rietveld 408576698