blob: cb6f3f1227b90ebdc700fbf9ec08bb81c8fd02b0 [file] [log] [blame]
// 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;
import org.chromium.chrome.browser.Tab;
/**
* 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 void openClearBrowsingData(Tab tab) {
}
@Override
protected boolean areParentalControlsEnabled() {
return false;
}
@Override
protected PKCS11AuthenticationManager getPKCS11AuthenticationManager() {
return null;
}
}