| 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 "content/renderer/compositor_bindings/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 content { | 19 namespace cc_blink { |
| 20 | 20 |
| 21 WebContentLayerImpl::WebContentLayerImpl(blink::WebContentLayerClient* client) | 21 WebContentLayerImpl::WebContentLayerImpl(blink::WebContentLayerClient* client) |
| 22 : client_(client), ignore_lcd_text_change_(false) { | 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 can_use_lcd_text_ = layer_->layer()->can_use_lcd_text(); |
| 29 } | 29 } |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 79 |
| 80 can_use_lcd_text_ = layer_->layer()->can_use_lcd_text(); | 80 can_use_lcd_text_ = layer_->layer()->can_use_lcd_text(); |
| 81 ignore_lcd_text_change_ = true; | 81 ignore_lcd_text_change_ = true; |
| 82 layer_->invalidate(); | 82 layer_->invalidate(); |
| 83 } | 83 } |
| 84 | 84 |
| 85 bool WebContentLayerImpl::FillsBoundsCompletely() const { | 85 bool WebContentLayerImpl::FillsBoundsCompletely() const { |
| 86 return false; | 86 return false; |
| 87 } | 87 } |
| 88 | 88 |
| 89 } // namespace content | 89 } // namespace cc_blink |
| 90 | |
| OLD | NEW |