Chromium Code Reviews| Index: Source/web/ScreenOrientationClientProxy.h |
| diff --git a/Source/web/ScreenOrientationClientProxy.h b/Source/web/ScreenOrientationClientProxy.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..462ef8e01f0efc4eddabfa159773edb9582872ff |
| --- /dev/null |
| +++ b/Source/web/ScreenOrientationClientProxy.h |
| @@ -0,0 +1,35 @@ |
| +// 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 "wtf/PassOwnPtr.h" |
| + |
| +namespace WebCore { |
| +class ScreenOrientationController; |
| +} |
| + |
| +namespace blink { |
| + |
| +class WebScreenOrientationClient; |
| + |
| +class ScreenOrientationClientProxy FINAL { |
|
abarth-chromium
2014/02/18 01:34:27
Rather than plumb these calls through the client,
Inactive
2014/02/18 20:52:47
Done.
|
| +public: |
| + static PassOwnPtr<ScreenOrientationClientProxy> create(WebScreenOrientationClient* client) |
| + { |
| + return adoptPtr(new ScreenOrientationClientProxy(client)); |
| + } |
| + |
| + void setController(WebCore::ScreenOrientationController*); |
| + |
| +private: |
| + explicit ScreenOrientationClientProxy(WebScreenOrientationClient*); |
| + |
| + WebScreenOrientationClient* m_client; |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // ScreenOrientationClientProxy_h |