Loading core/java/android/webkit/WebView.java +5 −2 Original line number Diff line number Diff line Loading @@ -1740,7 +1740,7 @@ public class WebView extends AbsoluteLayout } /** * returns the height of the titlebarview (if any). Does not care about * Returns the height (in pixels) of the embedded title bar (if any). Does not care about * scrolling * @hide */ Loading @@ -1749,12 +1749,15 @@ public class WebView extends AbsoluteLayout } /** * Return the amount of the titlebarview (if any) that is visible * Return the visible height (in pixels) of the embedded title bar (if any). * * @return This method is obsolete and always returns 0. * @deprecated This method is now obsolete. */ @Deprecated public int getVisibleTitleHeight() { // Actually, this method returns the height of the embedded title bar if one is set via the // hidden setEmbeddedTitleBar method. checkThread(); return getVisibleTitleHeightImpl(); } Loading Loading
core/java/android/webkit/WebView.java +5 −2 Original line number Diff line number Diff line Loading @@ -1740,7 +1740,7 @@ public class WebView extends AbsoluteLayout } /** * returns the height of the titlebarview (if any). Does not care about * Returns the height (in pixels) of the embedded title bar (if any). Does not care about * scrolling * @hide */ Loading @@ -1749,12 +1749,15 @@ public class WebView extends AbsoluteLayout } /** * Return the amount of the titlebarview (if any) that is visible * Return the visible height (in pixels) of the embedded title bar (if any). * * @return This method is obsolete and always returns 0. * @deprecated This method is now obsolete. */ @Deprecated public int getVisibleTitleHeight() { // Actually, this method returns the height of the embedded title bar if one is set via the // hidden setEmbeddedTitleBar method. checkThread(); return getVisibleTitleHeightImpl(); } Loading