OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/blink/web_content_layer_impl.h" | 5 #include "cc/blink/web_content_layer_impl.h" |
6 | 6 |
7 #include "cc/layers/content_layer.h" | 7 #include "cc/layers/content_layer.h" |
8 #include "cc/layers/picture_layer.h" | 8 #include "cc/layers/picture_layer.h" |
9 #include "third_party/WebKit/public/platform/WebContentLayerClient.h" | 9 #include "third_party/WebKit/public/platform/WebContentLayerClient.h" |
10 #include "third_party/WebKit/public/platform/WebFloatPoint.h" | 10 #include "third_party/WebKit/public/platform/WebFloatPoint.h" |
11 #include "third_party/WebKit/public/platform/WebFloatRect.h" | 11 #include "third_party/WebKit/public/platform/WebFloatRect.h" |
12 #include "third_party/WebKit/public/platform/WebRect.h" | 12 #include "third_party/WebKit/public/platform/WebRect.h" |
13 #include "third_party/WebKit/public/platform/WebSize.h" | 13 #include "third_party/WebKit/public/platform/WebSize.h" |
14 #include "third_party/skia/include/utils/SkMatrix44.h" | 14 #include "third_party/skia/include/utils/SkMatrix44.h" |
15 | 15 |
16 using cc::ContentLayer; | 16 using cc::ContentLayer; |
17 using cc::PictureLayer; | 17 using cc::PictureLayer; |
18 | 18 |
19 namespace cc_blink { | 19 namespace cc_blink { |
20 | 20 |
21 WebContentLayerImpl::WebContentLayerImpl(blink::WebContentLayerClient* client) | 21 WebContentLayerImpl::WebContentLayerImpl(blink::WebContentLayerClient* client) |
22 : client_(client) { | 22 : client_(client), ignore_lcd_text_change_(false) { |
23 if (WebLayerImpl::UsingPictureLayer()) | 23 if (WebLayerImpl::UsingPictureLayer()) |
24 layer_ = make_scoped_ptr(new WebLayerImpl(PictureLayer::Create(this))); | 24 layer_ = make_scoped_ptr(new WebLayerImpl(PictureLayer::Create(this))); |
25 else | 25 else |
26 layer_ = make_scoped_ptr(new WebLayerImpl(ContentLayer::Create(this))); | 26 layer_ = make_scoped_ptr(new WebLayerImpl(ContentLayer::Create(this))); |
27 layer_->layer()->SetIsDrawable(true); | 27 layer_->layer()->SetIsDrawable(true); |
| 28 can_use_lcd_text_ = layer_->layer()->can_use_lcd_text(); |
28 } | 29 } |
29 | 30 |
30 WebContentLayerImpl::~WebContentLayerImpl() { | 31 WebContentLayerImpl::~WebContentLayerImpl() { |
31 if (WebLayerImpl::UsingPictureLayer()) | 32 if (WebLayerImpl::UsingPictureLayer()) |
32 static_cast<PictureLayer*>(layer_->layer())->ClearClient(); | 33 static_cast<PictureLayer*>(layer_->layer())->ClearClient(); |
33 else | 34 else |
34 static_cast<ContentLayer*>(layer_->layer())->ClearClient(); | 35 static_cast<ContentLayer*>(layer_->layer())->ClearClient(); |
35 } | 36 } |
36 | 37 |
37 blink::WebLayer* WebContentLayerImpl::layer() { | 38 blink::WebLayer* WebContentLayerImpl::layer() { |
38 return layer_.get(); | 39 return layer_.get(); |
39 } | 40 } |
40 | 41 |
41 void WebContentLayerImpl::setDoubleSided(bool double_sided) { | 42 void WebContentLayerImpl::setDoubleSided(bool double_sided) { |
42 layer_->layer()->SetDoubleSided(double_sided); | 43 layer_->layer()->SetDoubleSided(double_sided); |
43 } | 44 } |
44 | 45 |
45 void WebContentLayerImpl::setDrawCheckerboardForMissingTiles(bool enable) { | 46 void WebContentLayerImpl::setDrawCheckerboardForMissingTiles(bool enable) { |
46 layer_->layer()->SetDrawCheckerboardForMissingTiles(enable); | 47 layer_->layer()->SetDrawCheckerboardForMissingTiles(enable); |
47 } | 48 } |
48 | 49 |
49 void WebContentLayerImpl::PaintContents( | 50 void WebContentLayerImpl::PaintContents( |
50 SkCanvas* canvas, | 51 SkCanvas* canvas, |
51 const gfx::Rect& clip, | 52 const gfx::Rect& clip, |
52 ContentLayerClient::GraphicsContextStatus graphics_context_status) { | 53 ContentLayerClient::GraphicsContextStatus graphics_context_status) { |
53 if (!client_) | 54 if (!client_) |
54 return; | 55 return; |
55 | 56 |
56 // TODO(danakj): Stop passing this to blink it should always use LCD when it | |
57 // wants to. crbug.com/430617 | |
58 bool can_use_lcd_text = true; | |
59 client_->paintContents( | 57 client_->paintContents( |
60 canvas, clip, can_use_lcd_text, | 58 canvas, |
| 59 clip, |
| 60 can_use_lcd_text_, |
61 graphics_context_status == ContentLayerClient::GRAPHICS_CONTEXT_ENABLED | 61 graphics_context_status == ContentLayerClient::GRAPHICS_CONTEXT_ENABLED |
62 ? blink::WebContentLayerClient::GraphicsContextEnabled | 62 ? blink::WebContentLayerClient::GraphicsContextEnabled |
63 : blink::WebContentLayerClient::GraphicsContextDisabled); | 63 : blink::WebContentLayerClient::GraphicsContextDisabled); |
64 } | 64 } |
65 | 65 |
| 66 void WebContentLayerImpl::DidChangeLayerCanUseLCDText() { |
| 67 // It is important to make this comparison because the LCD text status |
| 68 // here can get out of sync with that in the layer. |
| 69 if (can_use_lcd_text_ == layer_->layer()->can_use_lcd_text()) |
| 70 return; |
| 71 |
| 72 // LCD text cannot be enabled once disabled. |
| 73 if (layer_->layer()->can_use_lcd_text() && ignore_lcd_text_change_) |
| 74 return; |
| 75 |
| 76 can_use_lcd_text_ = layer_->layer()->can_use_lcd_text(); |
| 77 ignore_lcd_text_change_ = true; |
| 78 layer_->invalidate(); |
| 79 } |
| 80 |
66 bool WebContentLayerImpl::FillsBoundsCompletely() const { | 81 bool WebContentLayerImpl::FillsBoundsCompletely() const { |
67 return false; | 82 return false; |
68 } | 83 } |
69 | 84 |
70 } // namespace cc_blink | 85 } // namespace cc_blink |
OLD | NEW |