| Index: android_webview/native/aw_contents.h
|
| diff --git a/android_webview/native/aw_contents.h b/android_webview/native/aw_contents.h
|
| index 78ababc8ab1c25a1a663de88a846141714e26579..45770585775256afa5fc2e81c7c39ec4888cd551 100644
|
| --- a/android_webview/native/aw_contents.h
|
| +++ b/android_webview/native/aw_contents.h
|
| @@ -39,6 +39,7 @@ class WebContents;
|
| namespace android_webview {
|
|
|
| class AwContentsContainer;
|
| +class AwContentsClientBridge;
|
| class AwWebContentsDelegate;
|
|
|
| // Native side of java-class of same name.
|
| @@ -65,7 +66,8 @@ class AwContents : public FindHelper::Listener,
|
|
|
| AwContents(JNIEnv* env,
|
| jobject obj,
|
| - jobject web_contents_delegate);
|
| + jobject web_contents_delegate,
|
| + jobject contents_client_bridge);
|
| virtual ~AwContents();
|
|
|
| AwRenderViewHostExt* render_view_host_ext() {
|
| @@ -104,6 +106,7 @@ class AwContents : public FindHelper::Listener,
|
| // Methods called from Java.
|
| jint GetWebContents(JNIEnv* env, jobject obj);
|
| void SetWebContents(JNIEnv* env, jobject obj, jint web_contents);
|
| + jint GetAwContentsClientBridge(JNIEnv* env, jobject obj);
|
|
|
| void DidInitializeContentViewCore(JNIEnv* env, jobject obj,
|
| jint content_view_core);
|
| @@ -190,6 +193,7 @@ class AwContents : public FindHelper::Listener,
|
| JavaObjectWeakGlobalRef java_ref_;
|
| scoped_ptr<content::WebContents> web_contents_;
|
| scoped_ptr<AwWebContentsDelegate> web_contents_delegate_;
|
| + scoped_ptr<AwContentsClientBridge> contents_client_bridge_;
|
| scoped_ptr<AwRenderViewHostExt> render_view_host_ext_;
|
| scoped_ptr<FindHelper> find_helper_;
|
| scoped_ptr<IconHelper> icon_helper_;
|
|
|