| Index: content/browser/android/content_view_core_impl.cc
|
| diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
|
| index 3afa104ab1e5826fadf59a8bdae5ec1f2bd3dfc1..9ac585b133cc1424b1faca81bf3b21ff73a69c44 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -42,7 +42,7 @@
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/favicon_status.h"
|
| #include "content/public/browser/render_frame_host.h"
|
| -#include "content/public/browser/screen_orientation_dispatcher_host.h"
|
| +#include "content/public/browser/screen_orientation_provider.h"
|
| #include "content/public/browser/ssl_host_state_delegate.h"
|
| #include "content/public/browser/web_contents.h"
|
| #include "content/public/common/content_client.h"
|
| @@ -1254,8 +1254,9 @@ void ContentViewCoreImpl::SendOrientationChangeEventInternal() {
|
| if (rwhv)
|
| rwhv->UpdateScreenInfo(GetViewAndroid());
|
|
|
| - static_cast<WebContentsImpl*>(web_contents())->
|
| - screen_orientation_dispatcher_host()->OnOrientationChange();
|
| + static_cast<WebContentsImpl*>(web_contents())
|
| + ->GetScreenOrientationProvider()
|
| + ->OnOrientationChange();
|
| }
|
|
|
| void ContentViewCoreImpl::ExtractSmartClipData(JNIEnv* env,
|
|
|