| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 2612caf128a20ba5c78dab342b5d4ee3c009a40f..3eaba0692fe3bd2ef12cfe0d5656c59099c5904d 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -123,14 +123,11 @@
|
|
|
| #if defined(OS_ANDROID)
|
| #include "content/browser/android/content_video_view.h"
|
| +#include "content/browser/android/date_time_chooser_android.h"
|
| #include "content/browser/media/android/media_session.h"
|
| #include "content/browser/media/android/media_web_contents_observer_android.h"
|
| -#endif // OS_ANDROID
|
| -
|
| -#if defined(OS_ANDROID) && !defined(USE_AURA)
|
| -#include "content/browser/android/date_time_chooser_android.h"
|
| #include "content/browser/web_contents/web_contents_android.h"
|
| -#endif // OS_ANDROID && !USE_AURA
|
| +#endif // OS_ANDROID
|
|
|
| #if defined(OS_MACOSX)
|
| #include "base/mac/foundation_util.h"
|
| @@ -680,7 +677,7 @@ bool WebContentsImpl::OnMessageReceived(RenderViewHost* render_view_host,
|
| OnHideValidationMessage)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_MoveValidationMessage,
|
| OnMoveValidationMessage)
|
| -#if defined(OS_ANDROID) && !defined(USE_AURA)
|
| +#if defined(OS_ANDROID)
|
| IPC_MESSAGE_HANDLER(FrameHostMsg_FindMatchRects_Reply,
|
| OnFindMatchRectsReply)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_OpenDateTimeDialog,
|
| @@ -1434,7 +1431,7 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params) {
|
|
|
| manifest_manager_host_.reset(new ManifestManagerHost(this));
|
|
|
| -#if defined(OS_ANDROID) && !defined(USE_AURA)
|
| +#if defined(OS_ANDROID)
|
| date_time_chooser_.reset(new DateTimeChooserAndroid());
|
| #endif
|
|
|
| @@ -3365,7 +3362,7 @@ void WebContentsImpl::OnFindReply(int request_id,
|
| }
|
| }
|
|
|
| -#if defined(OS_ANDROID) && !defined(USE_AURA)
|
| +#if defined(OS_ANDROID)
|
| void WebContentsImpl::OnFindMatchRectsReply(
|
| int version,
|
| const std::vector<gfx::RectF>& rects,
|
| @@ -4577,7 +4574,7 @@ bool WebContentsImpl::CreateRenderFrameForRenderManager(
|
| return true;
|
| }
|
|
|
| -#if defined(OS_ANDROID) && !defined(USE_AURA)
|
| +#if defined(OS_ANDROID)
|
|
|
| base::android::ScopedJavaLocalRef<jobject>
|
| WebContentsImpl::GetJavaWebContents() {
|
|
|