2012-10-09 18:26:33 +00:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
|
2013-04-16 21:34:46 +00:00
|
|
|
import android.content.Context;
|
|
|
|
|
2015-01-12 04:45:09 +00:00
|
|
|
import org.mozilla.gecko.db.BrowserDB;
|
2015-08-11 09:09:37 +00:00
|
|
|
import org.mozilla.gecko.util.ColorUtils;
|
2015-01-12 04:45:09 +00:00
|
|
|
|
2012-10-09 18:26:33 +00:00
|
|
|
public class PrivateTab extends Tab {
|
2013-04-16 21:34:46 +00:00
|
|
|
public PrivateTab(Context context, int id, String url, boolean external, int parentId, String title) {
|
|
|
|
super(context, id, url, external, parentId, title);
|
2014-07-03 20:09:26 +00:00
|
|
|
|
2015-03-31 22:53:59 +00:00
|
|
|
// Init background to private_toolbar_grey to ensure flicker-free
|
2014-07-03 20:09:26 +00:00
|
|
|
// private tab creation. Page loads will reset it to white as expected.
|
2015-08-11 09:09:37 +00:00
|
|
|
final int bgColor = ColorUtils.getColor(context, R.color.tabs_tray_grey_pressed);
|
2014-07-03 20:09:26 +00:00
|
|
|
setBackgroundColor(bgColor);
|
2012-10-09 18:26:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-01-12 04:45:09 +00:00
|
|
|
protected void saveThumbnailToDB(final BrowserDB db) {}
|
2012-10-09 18:26:33 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isPrivate() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|