3d87b70adbc07010fb0767a017294f8f96f2ed4a
[platform/framework/web/crosswalk.git] / src / chrome / test / android / unit_tests_apk / src / org / chromium / chrome / unit_tests_apk / ChromeNativeTestApplication.java
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.chrome.unit_tests_apk;
6
7 import org.chromium.chrome.browser.ChromiumApplication;
8
9 /**
10  * A stub implementation of the chrome application to be used in chrome unit_tests.
11  */
12 public class ChromeNativeTestApplication extends ChromiumApplication {
13
14     @Override
15     protected void openProtectedContentSettings() {
16     }
17
18     @Override
19     protected void showSyncSettings() {
20     }
21
22     @Override
23     protected void showTermsOfServiceDialog() {
24     }
25
26     @Override
27     protected boolean areParentalControlsEnabled() {
28         return false;
29     }
30 }