Index: content/renderer/renderer_webkitplatformsupport_impl.cc |
diff --git a/content/renderer/renderer_webkitplatformsupport_impl.cc b/content/renderer/renderer_webkitplatformsupport_impl.cc |
index dcb214b8a2ac321949b1a0620206af6e10115619..34393dd27101da8c9b3587474083e0cbf0db9589 100644 |
--- a/content/renderer/renderer_webkitplatformsupport_impl.cc |
+++ b/content/renderer/renderer_webkitplatformsupport_impl.cc |
@@ -49,6 +49,7 @@ |
#include "content/renderer/media/webcontentdecryptionmodule_impl.h" |
#include "content/renderer/render_thread_impl.h" |
#include "content/renderer/renderer_clipboard_client.h" |
+#include "content/renderer/screen_orientation/screen_orientation_dispatcher.h" |
#include "content/renderer/webclipboard_impl.h" |
#include "content/renderer/webcrypto/webcrypto_impl.h" |
#include "content/renderer/webgraphicscontext3d_provider_impl.h" |
@@ -1109,6 +1110,18 @@ void RendererWebKitPlatformSupportImpl::cancelVibration() { |
//------------------------------------------------------------------------------ |
+void RendererWebKitPlatformSupportImpl::setScreenOrientationListener( |
+ blink::WebScreenOrientationListener* listener) { |
+ if (!screen_orientation_dispatcher_) { |
+ screen_orientation_dispatcher_.reset( |
+ new ScreenOrientationDispatcher(RenderThread::Get())); |
+ } |
+ |
+ screen_orientation_dispatcher_->setListener(listener); |
+} |
+ |
+//------------------------------------------------------------------------------ |
+ |
void RendererWebKitPlatformSupportImpl::queryStorageUsageAndQuota( |
const blink::WebURL& storage_partition, |
blink::WebStorageQuotaType type, |