Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7980f066 authored by Toby Sargeant's avatar Toby Sargeant Committed by Android (Google) Code Review
Browse files

Merge "[wv] Make WebViewRenderer ctor @SystemApi"

parents 69fbfdb7 29a45307
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -9096,6 +9096,10 @@ package android.webkit {
    field public final android.content.pm.Signature[] signatures;
  }
  public abstract class WebViewRenderer {
    ctor public WebViewRenderer();
  }
  public final class WebViewUpdateService {
    method public static android.webkit.WebViewProviderInfo[] getAllWebViewPackages();
    method public static String getCurrentWebViewPackageName();
+3 −0
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@

package android.webkit;

import android.annotation.SystemApi;

/**
 * WebViewRenderer provides an opaque handle to a {@link WebView} renderer.
 */
@@ -40,6 +42,7 @@ public abstract class WebViewRenderer {
     * This class cannot be created by applications.
     * @hide
     */
    @SystemApi
    public WebViewRenderer() {
    }
}