blob: d713217847dff16a22206b67ffc22a88b1e06b25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Copyright 2012 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 WebIOSurfaceLayerImpl_h
#define WebIOSurfaceLayerImpl_h
#include "base/memory/scoped_ptr.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebIOSurfaceLayer.h"
#include "webkit/compositor_bindings/webkit_compositor_bindings_export.h"
namespace WebKit {
class WebIOSurfaceLayerImpl : public WebIOSurfaceLayer {
public:
WEBKIT_COMPOSITOR_BINDINGS_EXPORT WebIOSurfaceLayerImpl();
virtual ~WebIOSurfaceLayerImpl();
// WebIOSurfaceLayer implementation.
virtual WebLayer* layer() OVERRIDE;
virtual void setIOSurfaceProperties(unsigned ioSurfaceId, WebSize) OVERRIDE;
private:
scoped_ptr<WebLayerImpl> m_layer;
};
}
#endif // WebIOSurfaceLayerImpl_h
|