| Index: content/browser/android/content_view_impl.h
|
| diff --git a/content/browser/android/content_view_impl.h b/content/browser/android/content_view_impl.h
|
| index b431cee3c18ebb5200ce0ebec288bd6f61c34508..019354bf1e932022c8819601420010a4ccd0a7ea 100644
|
| --- a/content/browser/android/content_view_impl.h
|
| +++ b/content/browser/android/content_view_impl.h
|
| @@ -79,6 +79,7 @@ class ContentViewImpl : public ContentView,
|
| void OnAcceleratedCompositingStateChange(RenderWidgetHostViewAndroid* rwhva,
|
| bool activated,
|
| bool force);
|
| + virtual void StartContentIntent(const GURL& content_url) OVERRIDE;
|
|
|
| // --------------------------------------------------------------------------
|
| // Methods called from native code
|
| @@ -108,8 +109,13 @@ class ContentViewImpl : public ContentView,
|
| // Other private methods and data
|
| // --------------------------------------------------------------------------
|
|
|
| + void InitJNI(JNIEnv* env, jobject obj);
|
| +
|
| void PostLoadUrl(const GURL& url);
|
|
|
| + struct JavaObject;
|
| + JavaObject* java_object_;
|
| +
|
| // Reference to the current WebContents used to determine how and what to
|
| // display in the ContentView.
|
| WebContents* web_contents_;
|
|
|