| 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 501ae9aa0f4ed99da6be0385031b7cc5c55f39de..c9cf56fd143ea7151f487fcf379a9946dd0f603e 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -47,7 +47,7 @@
|
| #include "content/browser/renderer_host/render_view_host_impl.h"
|
| #include "content/browser/renderer_host/render_widget_host_impl.h"
|
| #include "content/browser/renderer_host/render_widget_host_view_base.h"
|
| -#include "content/browser/screen_orientation/screen_orientation_dispatcher_host.h"
|
| +#include "content/browser/screen_orientation/screen_orientation_dispatcher_host_impl.h"
|
| #include "content/browser/site_instance_impl.h"
|
| #include "content/browser/web_contents/web_contents_view_guest.h"
|
| #include "content/browser/webui/generic_handler.h"
|
| @@ -76,6 +76,7 @@
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/browser/render_widget_host_iterator.h"
|
| #include "content/public/browser/resource_request_details.h"
|
| +#include "content/public/browser/screen_orientation_dispatcher_host.h"
|
| #include "content/public/browser/storage_partition.h"
|
| #include "content/public/browser/user_metrics.h"
|
| #include "content/public/browser/web_contents_delegate.h"
|
| @@ -1182,7 +1183,7 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params) {
|
| midi_dispatcher_host_.reset(new MidiDispatcherHost(this));
|
|
|
| screen_orientation_dispatcher_host_.reset(
|
| - new ScreenOrientationDispatcherHost(this));
|
| + new ScreenOrientationDispatcherHostImpl(this));
|
|
|
| #if defined(OS_ANDROID)
|
| date_time_chooser_.reset(new DateTimeChooserAndroid());
|
|
|