Fix build.

Change-Id: Ie255c93442d0b62032ac25e6de97f2c03e5df3ba
diff --git a/api/16.txt b/api/16.txt
index 62654ae..e1ed28e 100644
--- a/api/16.txt
+++ b/api/16.txt
@@ -22846,7 +22846,6 @@
     method public final android.view.View findViewWithTag(java.lang.Object);
     method public void findViewsWithText(java.util.ArrayList<android.view.View>, java.lang.CharSequence, int);
     method protected boolean fitSystemWindows(android.graphics.Rect);
-    method public boolean fitsSystemWindows();
     method public android.view.View focusSearch(int);
     method public void forceLayout();
     method public float getAlpha();
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java
index 99079a9..bf7d037 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -5272,6 +5272,11 @@
         return (mViewFlags & FITS_SYSTEM_WINDOWS) == FITS_SYSTEM_WINDOWS;
     }
 
+    /** @hide */
+    public boolean fitsSystemWindows() {
+        return getFitsSystemWindows();
+    }
+
     /**
      * Ask that a new dispatch of {@link #fitSystemWindows(Rect)} be performed.
      */