Chromium Code Reviews| Index: content/public/android/java/src/org/chromium/content_public/browser/WebContentsStatics.java |
| diff --git a/content/public/android/java/src/org/chromium/content_public/browser/WebContentsStatics.java b/content/public/android/java/src/org/chromium/content_public/browser/WebContentsStatics.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b123b09d22a2ad90bae28b5c01d31e3689a6be97 |
| --- /dev/null |
| +++ b/content/public/android/java/src/org/chromium/content_public/browser/WebContentsStatics.java |
| @@ -0,0 +1,21 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +package org.chromium.content_public.browser; |
| + |
| +/** |
| + * Static public methods for WebContents. |
| + */ |
| +public class WebContentsStatics { |
| + /** |
| + * @return The WebContens associated witht the RenderFrameHost. This can be null. |
| + */ |
| + public static WebContents fromRenderFrameHost(RenderFrameHost rfh) { |
|
boliu
2017/03/10 19:02:10
this class is free to import non-public content cl
rwlbuis
2017/03/10 21:40:42
Ah, I did not realize that was okay :) Fixed.
|
| + RenderFrameHostDelegate delegate = rfh.getRenderFrameHostDelegate(); |
| + if (delegate == null || !(delegate instanceof WebContents)) { |
| + return null; |
| + } |
| + return (WebContents) delegate; |
| + } |
| +} |