This source file includes following definitions.
- openProtectedContentSettings
- showSyncSettings
- showTermsOfServiceDialog
- areParentalControlsEnabled
- getPKCS11AuthenticationManager
package org.chromium.chrome.browser;
import org.chromium.base.CalledByNative;
import org.chromium.content.app.ContentApplication;
public abstract class ChromiumApplication extends ContentApplication {
@CalledByNative
protected abstract void openProtectedContentSettings();
@CalledByNative
protected abstract void showSyncSettings();
@CalledByNative
protected abstract void showTermsOfServiceDialog();
@CalledByNative
protected abstract boolean areParentalControlsEnabled();
protected abstract PKCS11AuthenticationManager getPKCS11AuthenticationManager();
}