/* * Tint Browser for Android * * Copyright (C) 2012 - to infinity and beyond J. Devauchelle and contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.tint.addons.framework; public class Callbacks { public static final int PAGE_STARTED = 1; public static final int PAGE_FINISHED = 2; public static final int TAB_OPENED = 4; public static final int TAB_CLOSED = 8; public static final int TAB_SWITCHED = 16; public static final int HAS_SETTINGS_PAGE = 32; public static final int CONTRIBUTE_MAIN_MENU = 64; public static final int CONTRIBUTE_LINK_CONTEXT_MENU = 128; public static final int CONTRIBUTE_HISTORY_BOOKMARKS_MENU = 256; public static final int CONTRIBUTE_BOOKMARK_CONTEXT_MENU = 512; public static final int CONTRIBUTE_HISTORY_CONTEXT_MENU = 1024; }