Index: base/android/java/src/org/chromium/base/library_loader/LoaderErrors.java |
diff --git a/base/android/java/src/org/chromium/base/library_loader/LoaderErrors.java b/base/android/java/src/org/chromium/base/library_loader/LoaderErrors.java |
index 31339536e1f7ff62f92ae7f471cee21059110a1f..2b94370bd806694c7ae7266348eaefa251d5d164 100644 |
--- a/base/android/java/src/org/chromium/base/library_loader/LoaderErrors.java |
+++ b/base/android/java/src/org/chromium/base/library_loader/LoaderErrors.java |
@@ -8,14 +8,9 @@ package org.chromium.base.library_loader; |
* These are the possible failures from the LibraryLoader |
*/ |
public class LoaderErrors { |
- // TODO(aberent) These were originally in content/common/result_codes_list.h |
- // although they are never used on the c++ side, or in places where they |
- // could be confused with other result codes. A copy must remain there, and the |
- // values must be identical, until the downstream patch to use this new class |
- // lands. |
public static final int LOADER_ERROR_NORMAL_COMPLETION = 0; |
- public static final int LOADER_ERROR_FAILED_TO_REGISTER_JNI = 4; |
- public static final int LOADER_ERROR_NATIVE_LIBRARY_LOAD_FAILED = 5; |
- public static final int LOADER_ERROR_NATIVE_LIBRARY_WRONG_VERSION = 6; |
- public static final int LOADER_ERROR_NATIVE_STARTUP_FAILED = 7; |
+ public static final int LOADER_ERROR_FAILED_TO_REGISTER_JNI = 1; |
+ public static final int LOADER_ERROR_NATIVE_LIBRARY_LOAD_FAILED = 2; |
+ public static final int LOADER_ERROR_NATIVE_LIBRARY_WRONG_VERSION = 3; |
+ public static final int LOADER_ERROR_NATIVE_STARTUP_FAILED = 4; |
} |