Chromium Code Reviews| Index: public/web/WebScreenOrientationClient.h |
| diff --git a/public/web/WebScreenOrientationClient.h b/public/web/WebScreenOrientationClient.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ea8a281fb1cc7f7e400d2dd8caf2ccd1f013b596 |
| --- /dev/null |
| +++ b/public/web/WebScreenOrientationClient.h |
| @@ -0,0 +1,26 @@ |
| +// 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 lockOrientation(WebScreenOrientations) = 0; |
|
kenneth.r.christiansen
2014/02/05 17:42:00
The spec (editor draft at least) says that if any
Inactive
2014/02/05 18:22:44
Done.
|
| + virtual void unlockOrientation() = 0; |
| + |
| + virtual void setController(WebScreenOrientationController*) = 0; |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // WebScreenOrientationClient_h |