Index: public/web/WebScreenOrientationClient.h |
diff --git a/public/web/WebScreenOrientationClient.h b/public/web/WebScreenOrientationClient.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..17cbb52b8d698059e7fcab70c95fbc0c7dfa28fc |
--- /dev/null |
+++ b/public/web/WebScreenOrientationClient.h |
@@ -0,0 +1,23 @@ |
+// 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 WebScreenOrientationClient_h |
+#define WebScreenOrientationClient_h |
+ |
+#include "WebScreenOrientation.h" |
+ |
+namespace blink { |
+ |
+class WebScreenOrientationController; |
+ |
+class WebScreenOrientationClient { |
+public: |
+ virtual ~WebScreenOrientationClient() { } |
+ |
+ virtual void setController(WebScreenOrientationController*) = 0; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // WebScreenOrientationClient_h |