| Index: cc/IOSurfaceLayerChromium.cpp
|
| diff --git a/cc/IOSurfaceLayerChromium.cpp b/cc/IOSurfaceLayerChromium.cpp
|
| index 7b242fd7130f53713a555de6c3ac79a99f1b00de..fe6d39a38da86b23180490756794cd1406069d8d 100644
|
| --- a/cc/IOSurfaceLayerChromium.cpp
|
| +++ b/cc/IOSurfaceLayerChromium.cpp
|
| @@ -34,9 +34,9 @@ void IOSurfaceLayerChromium::setIOSurfaceProperties(uint32_t ioSurfaceId, const
|
| setNeedsCommit();
|
| }
|
|
|
| -PassOwnPtr<CCLayerImpl> IOSurfaceLayerChromium::createCCLayerImpl()
|
| +scoped_ptr<CCLayerImpl> IOSurfaceLayerChromium::createCCLayerImpl()
|
| {
|
| - return CCIOSurfaceLayerImpl::create(m_layerId);
|
| + return CCIOSurfaceLayerImpl::create(m_layerId).PassAs<CCLayerImpl>();
|
| }
|
|
|
| bool IOSurfaceLayerChromium::drawsContent() const
|
|
|