| Index: base/android/java/src/org/chromium/base/library_loader/Linker.java | 
| diff --git a/base/android/java/src/org/chromium/base/library_loader/Linker.java b/base/android/java/src/org/chromium/base/library_loader/Linker.java | 
| index 271e6cb7848d7aa40258efa075ccf871e43e5b0a..7d1999582963efd31779e68aa7761cedbaf43e45 100644 | 
| --- a/base/android/java/src/org/chromium/base/library_loader/Linker.java | 
| +++ b/base/android/java/src/org/chromium/base/library_loader/Linker.java | 
| @@ -503,32 +503,24 @@ public abstract class Linker { | 
| } | 
|  | 
| /** | 
| -     * Determine whether a library is the linker library. Also deal with the | 
| -     * component build that adds a .cr suffix to the name. | 
| +     * Determine whether a library is the linker library. | 
| * | 
| * @param library the name of the library. | 
| * @return true is the library is the Linker's own JNI library. | 
| */ | 
| public boolean isChromiumLinkerLibrary(String library) { | 
| -        return library.equals(LINKER_JNI_LIBRARY) || library.equals(LINKER_JNI_LIBRARY + ".cr"); | 
| +        return library.equals(LINKER_JNI_LIBRARY); | 
| } | 
|  | 
| /** | 
| * Load the Linker JNI library. Throws UnsatisfiedLinkError on error. | 
| -     * In a component build, the suffix ".cr" is added to each library name, so | 
| -     * if the initial load fails we retry with a suffix. | 
| */ | 
| protected static void loadLinkerJniLibrary() { | 
| String libName = "lib" + LINKER_JNI_LIBRARY + ".so"; | 
| if (DEBUG) { | 
| Log.i(TAG, "Loading " + libName); | 
| } | 
| -        try { | 
| -            System.loadLibrary(LINKER_JNI_LIBRARY); | 
| -        } catch (UnsatisfiedLinkError e) { | 
| -            Log.w(TAG, "Couldn't load " + libName + ", trying " + libName + ".cr"); | 
| -            System.loadLibrary(LINKER_JNI_LIBRARY + ".cr"); | 
| -        } | 
| +        System.loadLibrary(LINKER_JNI_LIBRARY); | 
| } | 
|  | 
| /** | 
|  |