Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 2681933002: Add Java wrapper for RenderFrameHost (Closed)
Patch Set: Make test work with PlzNavigate Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/frame_host/render_frame_host_impl.h
diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h
index 70173f9f7587480c6d6f79a7e96c12704625a4c8..fb510b80d46c48f03d4b1b22791867c276b80580 100644
--- a/content/browser/frame_host/render_frame_host_impl.h
+++ b/content/browser/frame_host/render_frame_host_impl.h
@@ -20,6 +20,7 @@
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/string16.h"
+#include "base/supports_user_data.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "content/browser/accessibility/browser_accessibility_manager.h"
@@ -111,6 +112,7 @@ class CreateNewWindowParams;
class CONTENT_EXPORT RenderFrameHostImpl
: public RenderFrameHost,
+ public base::SupportsUserData,
NON_EXPORTED_BASE(public mojom::FrameHost),
public BrowserAccessibilityDelegate,
public SiteInstanceImpl::Observer,
@@ -615,6 +617,10 @@ class CONTENT_EXPORT RenderFrameHostImpl
return has_focused_editable_element_;
}
+#if defined(OS_ANDROID)
+ base::android::ScopedJavaLocalRef<jobject> GetJavaRenderFrameHost();
+#endif
+
protected:
friend class RenderFrameHostFactory;
« no previous file with comments | « content/browser/frame_host/render_frame_host_delegate.cc ('k') | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698