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

Unified Diff: mojo/public/java/system/src/org/chromium/mojo/system/MojoResult.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/system/src/org/chromium/mojo/system/MojoResult.java
diff --git a/mojo/public/java/system/src/org/chromium/mojo/system/MojoResult.java b/mojo/public/java/system/src/org/chromium/mojo/system/MojoResult.java
deleted file mode 100644
index 818d462e74a7b7e42c3d41e56189818db0b62da5..0000000000000000000000000000000000000000
--- a/mojo/public/java/system/src/org/chromium/mojo/system/MojoResult.java
+++ /dev/null
@@ -1,87 +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.system;
-
-/**
- * The different mojo result codes.
- *
- * TODO(vtl): Find a way of supporting the new, more flexible/extensible
- * MojoResult (see mojo/public/c/syste/result.h).
- */
-public final class MojoResult {
- public static final int OK = 0x0;
- public static final int CANCELLED = 0x1;
- public static final int UNKNOWN = 0x2;
- public static final int INVALID_ARGUMENT = 0x3;
- public static final int DEADLINE_EXCEEDED = 0x4;
- public static final int NOT_FOUND = 0x5;
- public static final int ALREADY_EXISTS = 0x6;
- public static final int PERMISSION_DENIED = 0x7;
- public static final int RESOURCE_EXHAUSTED = 0x8;
- public static final int FAILED_PRECONDITION = 0x9;
- public static final int ABORTED = 0xa;
- public static final int OUT_OF_RANGE = 0xb;
- public static final int UNIMPLEMENTED = 0xc;
- public static final int INTERNAL = 0xd;
- public static final int UNAVAILABLE = 0xe;
- public static final int DATA_LOSS = 0xf;
- // FAILED_PRECONDITION, subcode 0x001:
- public static final int BUSY = 0x0019;
- // UNAVAILABLE, subcode 0x001:
- public static final int SHOULD_WAIT = 0x001e;
-
- /**
- * never instantiate.
- */
- private MojoResult() {
- }
-
- /**
- * Describes the given result code.
- */
- public static String describe(int mCode) {
- switch (mCode) {
- case OK:
- return "OK";
- case CANCELLED:
- return "CANCELLED";
- case UNKNOWN:
- return "UNKNOWN";
- case INVALID_ARGUMENT:
- return "INVALID_ARGUMENT";
- case DEADLINE_EXCEEDED:
- return "DEADLINE_EXCEEDED";
- case NOT_FOUND:
- return "NOT_FOUND";
- case ALREADY_EXISTS:
- return "ALREADY_EXISTS";
- case PERMISSION_DENIED:
- return "PERMISSION_DENIED";
- case RESOURCE_EXHAUSTED:
- return "RESOURCE_EXHAUSTED";
- case FAILED_PRECONDITION:
- return "FAILED_PRECONDITION";
- case ABORTED:
- return "ABORTED";
- case OUT_OF_RANGE:
- return "OUT_OF_RANGE";
- case UNIMPLEMENTED:
- return "UNIMPLEMENTED";
- case INTERNAL:
- return "INTERNAL";
- case UNAVAILABLE:
- return "UNAVAILABLE";
- case DATA_LOSS:
- return "DATA_LOSS";
- case BUSY:
- return "BUSY";
- case SHOULD_WAIT:
- return "SHOULD_WAIT";
- default:
- return "UNKNOWN";
- }
-
- }
-}

Powered by Google App Engine
This is Rietveld 408576698