blob: 6f8008d645c57fd81055d4e882d38f5f19090f31 [file] [log] [blame]
// Copyright 2016 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.base.library_loader;
import android.content.Context;
/**
* This is interface to preload the native library before calling System.loadLibrary.
*
* Preloading shouldn't call System.loadLibrary() or otherwise cause any Chromium
* code to be run, because it can be called before Chromium command line is known.
* It can however open the library via dlopen() or android_dlopen_ext() so that
* dlopen() later called by System.loadLibrary() becomes a noop. This is what the
* only subclass (MonochromeLibraryPreloader) is doing.
*/
public abstract class NativeLibraryPreloader {
public abstract int loadLibrary(Context context);
}