summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/main/java/org/mozilla/gecko/mozglue/JNIObject.java
blob: a3a127a1a0b0f63e0da10ce3091adb866a39db47 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.mozilla.gecko.mozglue;

// Class that all classes with native methods extend from.
public abstract class JNIObject
{
    // Pointer to a WeakPtr object that refers to the native object.
    private long mHandle;

    // Dispose of any reference to a native object.
    protected abstract void disposeNative();
}