Bug 1256288 - Remove unused class Divider. r=sebastian

MozReview-Commit-ID: 42Xv19fhPK9

--HG--
extra : amend_source : b75171802cd9722424f534eff6ccc109feff34ab
This commit is contained in:
Umesh_Kumhar 2016-03-15 04:09:44 +05:30
Родитель e30233beae
Коммит 1bc2236866
2 изменённых файлов: 0 добавлений и 40 удалений

Просмотреть файл

@ -1,39 +0,0 @@
/* 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.widget;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.LinearLayout.LayoutParams;
public class Divider extends View {
public static enum Orientation { HORIZONTAL, VERTICAL };
// Orientation of the divider.
private Orientation mOrientation;
// Density of the device.
private final int mDensity;
public Divider(Context context, AttributeSet attrs) {
super(context, attrs);
mDensity = (int) context.getResources().getDisplayMetrics().density;
setOrientation(Orientation.HORIZONTAL);
}
public void setOrientation(Orientation orientation) {
if (mOrientation != orientation) {
mOrientation = orientation;
if (mOrientation == Orientation.HORIZONTAL)
setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, mDensity));
else
setLayoutParams(new LayoutParams(mDensity, LayoutParams.MATCH_PARENT));
}
}
}

Просмотреть файл

@ -599,7 +599,6 @@ gbjar.sources += ['java/org/mozilla/gecko/' + x for x in [
'widget/CropImageView.java',
'widget/DateTimePicker.java',
'widget/DefaultDoorHanger.java',
'widget/Divider.java',
'widget/DoorHanger.java',
'widget/DoorhangerConfig.java',
'widget/EllipsisTextView.java',