root/chrome/test/android/unit_tests_apk/src/org/chromium/chrome/unit_tests_apk/ChromeNativeTestApplication.java

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. openProtectedContentSettings
  2. showSyncSettings
  3. showTermsOfServiceDialog
  4. areParentalControlsEnabled
  5. getPKCS11AuthenticationManager

// Copyright 2014 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.chrome.unit_tests_apk;

import org.chromium.chrome.browser.ChromiumApplication;
import org.chromium.chrome.browser.PKCS11AuthenticationManager;

/**
 * A stub implementation of the chrome application to be used in chrome unit_tests.
 */
public class ChromeNativeTestApplication extends ChromiumApplication {

    @Override
    protected void openProtectedContentSettings() {
    }

    @Override
    protected void showSyncSettings() {
    }

    @Override
    protected void showTermsOfServiceDialog() {
    }

    @Override
    protected boolean areParentalControlsEnabled() {
        return false;
    }

    @Override
    protected PKCS11AuthenticationManager getPKCS11AuthenticationManager() {
        return null;
    }
}

/* [<][>][^][v][top][bottom][index][help] */