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

Unified Diff: base/android/java/src/org/chromium/base/library_loader/LoaderErrors.java

Issue 152663002: Remove shim classes etc. that were needed to move Android Loader (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@moveLibraryLoader
Patch Set: Rebase to landed versions of predecessor CLs. Created 6 years, 10 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
« no previous file with comments | « no previous file | base/android/java/src/org/chromium/base/library_loader/ProcessInitException.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « no previous file | base/android/java/src/org/chromium/base/library_loader/ProcessInitException.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698