This source file includes following definitions.
- ignore_lcd_text_change_
- layer
- setDoubleSided
- setDrawCheckerboardForMissingTiles
- setHasGpuRasterizationHint
- PaintContents
- DidChangeLayerCanUseLCDText
- FillsBoundsCompletely
#include "webkit/renderer/compositor_bindings/web_content_layer_impl.h"
#include "cc/layers/content_layer.h"
#include "cc/layers/picture_layer.h"
#include "third_party/WebKit/public/platform/WebContentLayerClient.h"
#include "third_party/WebKit/public/platform/WebFloatPoint.h"
#include "third_party/WebKit/public/platform/WebFloatRect.h"
#include "third_party/WebKit/public/platform/WebRect.h"
#include "third_party/WebKit/public/platform/WebSize.h"
#include "third_party/skia/include/utils/SkMatrix44.h"
using cc::ContentLayer;
using cc::PictureLayer;
namespace webkit {
WebContentLayerImpl::WebContentLayerImpl(blink::WebContentLayerClient* client)
: client_(client),
ignore_lcd_text_change_(false) {
if (WebLayerImpl::UsingPictureLayer())
layer_ = make_scoped_ptr(new WebLayerImpl(PictureLayer::Create(this)));
else
layer_ = make_scoped_ptr(new WebLayerImpl(ContentLayer::Create(this)));
layer_->layer()->SetIsDrawable(true);
can_use_lcd_text_ = layer_->layer()->can_use_lcd_text();
}
WebContentLayerImpl::~WebContentLayerImpl() {
if (WebLayerImpl::UsingPictureLayer())
static_cast<PictureLayer*>(layer_->layer())->ClearClient();
else
static_cast<ContentLayer*>(layer_->layer())->ClearClient();
}
blink::WebLayer* WebContentLayerImpl::layer() { return layer_.get(); }
void WebContentLayerImpl::setDoubleSided(bool double_sided) {
layer_->layer()->SetDoubleSided(double_sided);
}
void WebContentLayerImpl::setDrawCheckerboardForMissingTiles(bool enable) {
layer_->layer()->SetDrawCheckerboardForMissingTiles(enable);
}
void WebContentLayerImpl::setHasGpuRasterizationHint(bool has_hint) {
if (WebLayerImpl::UsingPictureLayer()) {
static_cast<PictureLayer*>(layer_->layer())
->SetHasGpuRasterizationHint(has_hint);
}
}
void WebContentLayerImpl::PaintContents(SkCanvas* canvas,
const gfx::Rect& clip,
gfx::RectF* opaque) {
if (!client_)
return;
blink::WebFloatRect web_opaque;
bool use_lcd_text = WebLayerImpl::UsingPictureLayer() || can_use_lcd_text_;
client_->paintContents(canvas, clip, use_lcd_text, web_opaque);
*opaque = web_opaque;
}
void WebContentLayerImpl::DidChangeLayerCanUseLCDText() {
if (can_use_lcd_text_ == layer_->layer()->can_use_lcd_text())
return;
if (layer_->layer()->can_use_lcd_text() && ignore_lcd_text_change_)
return;
can_use_lcd_text_ = layer_->layer()->can_use_lcd_text();
ignore_lcd_text_change_ = true;
layer_->invalidate();
}
bool WebContentLayerImpl::FillsBoundsCompletely() const { return false; }
}