No longer use this private API.
Change-Id: I6da57d89b526975422afc0dab7051d28a17fa64e
diff --git a/src/com/android/browser/BreadCrumbView.java b/src/com/android/browser/BreadCrumbView.java
index 4939b48..d0ba8ad 100644
--- a/src/com/android/browser/BreadCrumbView.java
+++ b/src/com/android/browser/BreadCrumbView.java
@@ -240,7 +240,7 @@
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int height = mSeparatorDrawable.getIntrinsicHeight();
- if (mMeasuredHeight < height) {
+ if (getMeasuredHeight() < height) {
// This should only be an issue if there are currently no separators
// showing; i.e. if there is one crumb and no back button.
int mode = View.MeasureSpec.getMode(heightMeasureSpec);
@@ -255,7 +255,7 @@
default:
break;
}
- setMeasuredDimension(mMeasuredWidth, height);
+ setMeasuredDimension(getMeasuredWidth(), height);
}
}