| Index: content/browser/web_contents/web_contents_impl.h
|
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
|
| index 77b524c5704a68dc463b9de4c64575596b4f1a7a..7347775d0aabb2acd2832723acc5177d3b509324 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -74,6 +74,10 @@ struct LoadNotificationDetails;
|
| struct ResourceRedirectDetails;
|
| struct ResourceRequestDetails;
|
|
|
| +#if defined(OS_ANDROID)
|
| +class WebContentsAndroid;
|
| +#endif
|
| +
|
| // Factory function for the implementations that content knows about. Takes
|
| // ownership of |delegate|.
|
| WebContentsView* CreateWebContentsView(
|
| @@ -326,6 +330,7 @@ class CONTENT_EXPORT WebContentsImpl
|
| #if defined(OS_ANDROID)
|
| virtual base::android::ScopedJavaLocalRef<jobject> GetJavaWebContents()
|
| OVERRIDE;
|
| + virtual WebContentsAndroid* GetWebContentsAndroid() OVERRIDE;
|
| #elif defined(OS_MACOSX)
|
| virtual void SetAllowOverlappingViews(bool overlapping) OVERRIDE;
|
| virtual bool GetAllowOverlappingViews() OVERRIDE;
|
|
|