| Index: webkit/compositor/WebSolidColorLayerImpl.cpp
|
| diff --git a/webkit/compositor/WebSolidColorLayerImpl.cpp b/webkit/compositor/WebSolidColorLayerImpl.cpp
|
| index 51be974f90486736bf5019f56efa8cd882efb34e..ff4cf4ecaf159697849a837d7b4172c281715d0d 100644
|
| --- a/webkit/compositor/WebSolidColorLayerImpl.cpp
|
| +++ b/webkit/compositor/WebSolidColorLayerImpl.cpp
|
| @@ -14,11 +14,11 @@ namespace WebKit {
|
|
|
| WebSolidColorLayer* WebSolidColorLayer::create()
|
| {
|
| - return new WebSolidColorLayerImpl(SolidColorLayerChromium::create());
|
| + return new WebSolidColorLayerImpl();
|
| }
|
|
|
| -WebSolidColorLayerImpl::WebSolidColorLayerImpl(PassRefPtr<SolidColorLayerChromium> layer)
|
| - : m_layer(adoptPtr(new WebLayerImpl(layer)))
|
| +WebSolidColorLayerImpl::WebSolidColorLayerImpl()
|
| + : m_layer(adoptPtr(new WebLayerImpl(SolidColorLayerChromium::create())))
|
| {
|
| m_layer->layer()->setIsDrawable(true);
|
| }
|
|
|