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

Side by Side Diff: content/browser/frame_host/render_frame_host_android.h

Issue 2681933002: Add Java wrapper for RenderFrameHost (Closed)
Patch Set: Address review comments 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_FRAME_HOST_ANDROID_H_
boliu 2017/03/08 00:39:32 this need to match the full path, so CONTENT_BROW
do_not_use 2017/03/08 18:28:27 Done.
6 #define CONTENT_BROWSER_FRAME_HOST_ANDROID_H_
7
8 #include <jni.h>
9
10 #include <memory>
11
12 #include "base/android/jni_android.h"
13 #include "base/android/jni_weak_ref.h"
14 #include "base/android/scoped_java_ref.h"
15 #include "base/compiler_specific.h"
16 #include "base/macros.h"
17 #include "base/supports_user_data.h"
18 #include "content/common/content_export.h"
19
20 namespace content {
21
22 class RenderFrameHostImpl;
23
24 // Android wrapper around RenderFrameHost that provides safer passage from java
25 // and back to native and provides java with a means of communicating with its
26 // native counterpart.
27 class RenderFrameHostAndroid : public base::SupportsUserData::Data {
28 public:
29 static bool Register(JNIEnv* env);
30
31 explicit RenderFrameHostAndroid(RenderFrameHostImpl* render_frame_host);
32 ~RenderFrameHostAndroid() override;
33
34 base::android::ScopedJavaLocalRef<jobject> GetJavaObject();
35
36 // Methods called from Java
37 base::android::ScopedJavaLocalRef<jstring> GetLastCommittedURL(
38 JNIEnv* env,
39 const base::android::JavaParamRef<jobject>&) const;
40
41 private:
42 RenderFrameHostImpl* const render_frame_host_;
43 JavaObjectWeakGlobalRef obj_;
44
45 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostAndroid);
46 };
47
48 } // namespace content
49
50 #endif // CONTENT_BROWSER_FRAME_HOST_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698