Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1375)

Unified Diff: Source/web/ScreenOrientationClientProxy.h

Issue 132113006: Add initial Blink-side support for the Screen Orientation API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update compile-time assertion for matching enum Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/web/ScreenOrientationClientProxy.h
diff --git a/Source/web/ScreenOrientationClientProxy.h b/Source/web/ScreenOrientationClientProxy.h
new file mode 100644
index 0000000000000000000000000000000000000000..daeb29aa03d84d5ee7d8cacfac71182d9f00c36a
--- /dev/null
+++ b/Source/web/ScreenOrientationClientProxy.h
@@ -0,0 +1,37 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ScreenOrientationClientProxy_h
+#define ScreenOrientationClientProxy_h
+
+#include "modules/screen_orientation/ScreenOrientationClient.h"
+
+namespace WebCore {
+class ScreenOrientationController;
+}
+
+namespace blink {
+
+class WebScreenOrientationClient;
+
+class ScreenOrientationClientProxy FINAL : public WebCore::ScreenOrientationClient {
+public:
+ static PassOwnPtr<ScreenOrientationClientProxy> create(WebScreenOrientationClient* client)
+ {
+ return adoptPtr(new ScreenOrientationClientProxy(client));
+ }
+
+ void setController(WebCore::ScreenOrientationController*);
+ virtual void lockOrientation(WebCore::ScreenOrientationValues orientations) OVERRIDE;
+ virtual void unlockOrientation() OVERRIDE;
+
+private:
+ explicit ScreenOrientationClientProxy(WebScreenOrientationClient*);
+
+ WebScreenOrientationClient* m_client;
+};
+
+} // namespace blink
+
+#endif // ScreenOrientationClientProxy_h

Powered by Google App Engine
This is Rietveld 408576698