| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WebVideoLayerImpl_h | 5 #ifndef WebVideoLayerImpl_h |
| 6 #define WebVideoLayerImpl_h | 6 #define WebVideoLayerImpl_h |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebVideoLayer.h" | 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebVideoLayer.h" |
| 10 #include "webkit/compositor_bindings/webkit_compositor_bindings_export.h" | 10 #include "webkit/compositor_bindings/webkit_compositor_bindings_export.h" |
| 11 | 11 |
| 12 namespace webkit { class WebToCCVideoFrameProvider; } | 12 namespace webkit { class WebToCCVideoFrameProvider; } |
| 13 | 13 |
| 14 namespace WebKit { | 14 namespace WebKit { |
| 15 |
| 15 class WebLayerImpl; | 16 class WebLayerImpl; |
| 17 class WebVideoFrameProvider; |
| 16 | 18 |
| 17 class WebVideoLayerImpl : public WebVideoLayer { | 19 class WebVideoLayerImpl : public WebVideoLayer { |
| 18 public: | 20 public: |
| 19 WEBKIT_COMPOSITOR_BINDINGS_EXPORT explicit WebVideoLayerImpl( | 21 WEBKIT_COMPOSITOR_BINDINGS_EXPORT explicit WebVideoLayerImpl( |
| 20 WebVideoFrameProvider*); | 22 WebVideoFrameProvider*); |
| 21 virtual ~WebVideoLayerImpl(); | 23 virtual ~WebVideoLayerImpl(); |
| 22 | 24 |
| 23 // WebVideoLayer implementation. | 25 // WebVideoLayer implementation. |
| 24 virtual WebLayer* layer() OVERRIDE; | 26 virtual WebLayer* layer(); |
| 25 virtual bool active() const OVERRIDE; | 27 virtual bool active() const; |
| 26 | 28 |
| 27 private: | 29 private: |
| 28 scoped_ptr<webkit::WebToCCVideoFrameProvider> provider_adapter_; | 30 scoped_ptr<webkit::WebToCCVideoFrameProvider> provider_adapter_; |
| 29 scoped_ptr<WebLayerImpl> layer_; | 31 scoped_ptr<WebLayerImpl> layer_; |
| 30 }; | 32 }; |
| 31 | 33 |
| 32 } | 34 } |
| 33 | 35 |
| 34 #endif // WebVideoLayerImpl_h | 36 #endif // WebVideoLayerImpl_h |
| OLD | NEW |