@@ -190,15 +190,19 @@ public boolean supportZoom() {
190190 }
191191
192192 /**
193- * Sets whether the WebView should use its built-in zoom mechanisms, as
194- * opposed to separate zoom controls. The built-in zoom mechanisms comprise
195- * on-screen zoom controls, which are displayed over the WebView's content,
196- * and the use of a pinch gesture to control zooming. Whether or not these
197- * on-screen controls are displayed can be set with {@link #setDisplayZoomControls}.
198- * The separate zoom controls are no longer supported, so it is recommended
199- * that this setting is always enabled.
200- * @param enabled Whether the WebView should use the built-in zoom mechanism.
201- */
193+ * Sets whether the WebView should use its built-in zoom mechanisms. The
194+ * built-in zoom mechanisms comprise on-screen zoom controls, which are
195+ * displayed over the WebView's content, and the use of a pinch gesture to
196+ * control zooming. Whether or not these on-screen controls are displayed
197+ * can be set with {@link #setDisplayZoomControls}.
198+ * <p>
199+ * The built-in mechanisms are the only currently supported zoom
200+ * mechanisms, so it is recommended that this setting is always enabled.
201+ * @param enabled Whether the WebView should use its built-in zoom mechanisms.
202+ */
203+ // This method was intended to select between the built-in zoom mechanisms
204+ // and the separate zoom controls. The latter were obtained using
205+ // {@link WebView#getZoomControls}, which is now hidden.
202206 public void setBuiltInZoomControls (boolean enabled ) {
203207 throw new MustOverrideException ();
204208 }
0 commit comments