ChromiumApplication.java revision 4e180b6a0b4720a9b8e9e959a882386f690f08ff
1// Copyright 2013 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
5package org.chromium.chrome.browser;
6
7import org.chromium.base.CalledByNative;
8import org.chromium.content.app.ContentApplication;
9
10/**
11 * Basic application functionality that should be shared among all browser applications that use
12 * chrome layer.
13 */
14public abstract class ChromiumApplication extends ContentApplication {
15    /**
16     * Opens a protected content settings page, if available.
17     */
18    @CalledByNative
19    protected abstract void openProtectedContentSettings();
20}
21