| Index: cc/blink/web_content_layer_impl.cc
|
| diff --git a/cc/blink/web_content_layer_impl.cc b/cc/blink/web_content_layer_impl.cc
|
| index 458b3985738a6ea3ab33fc909093a08851285a9e..c55f2ec0cd82a9825cf5d3cc8d46593aee9ea480 100644
|
| --- a/cc/blink/web_content_layer_impl.cc
|
| +++ b/cc/blink/web_content_layer_impl.cc
|
| @@ -9,6 +9,7 @@
|
| #include "base/command_line.h"
|
| #include "cc/base/switches.h"
|
| #include "cc/blink/web_display_item_list_impl.h"
|
| +#include "cc/layers/layer_settings.h"
|
| #include "cc/layers/picture_layer.h"
|
| #include "cc/playback/display_item_list_settings.h"
|
| #include "third_party/WebKit/public/platform/WebContentLayerClient.h"
|
| @@ -51,8 +52,8 @@ PaintingControlToWeb(
|
|
|
| WebContentLayerImpl::WebContentLayerImpl(blink::WebContentLayerClient* client)
|
| : client_(client) {
|
| - layer_ = make_scoped_ptr(new WebLayerImpl(
|
| - PictureLayer::Create(WebLayerImpl::LayerSettings(), this)));
|
| + layer_ = make_scoped_ptr(
|
| + new WebLayerImpl(PictureLayer::Create(cc::LayerSettings(), this)));
|
| layer_->layer()->SetIsDrawable(true);
|
| }
|
|
|
|
|