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_layer_impl.h" | 5 #include "cc/blink/web_layer_impl.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/lazy_instance.h" | 11 #include "base/lazy_instance.h" |
12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
13 #include "base/threading/thread_checker.h" | 13 #include "base/threading/thread_checker.h" |
14 #include "base/trace_event/trace_event_impl.h" | 14 #include "base/trace_event/trace_event_impl.h" |
15 #include "cc/animation/animation.h" | 15 #include "cc/animation/animation.h" |
16 #include "cc/base/region.h" | 16 #include "cc/base/region.h" |
17 #include "cc/base/switches.h" | 17 #include "cc/base/switches.h" |
18 #include "cc/blink/web_animation_impl.h" | 18 #include "cc/blink/web_animation_impl.h" |
19 #include "cc/blink/web_blend_mode.h" | 19 #include "cc/blink/web_blend_mode.h" |
20 #include "cc/blink/web_filter_operations_impl.h" | 20 #include "cc/blink/web_filter_operations_impl.h" |
21 #include "cc/blink/web_to_cc_animation_delegate_adapter.h" | 21 #include "cc/blink/web_to_cc_animation_delegate_adapter.h" |
22 #include "cc/layers/layer.h" | 22 #include "cc/layers/layer.h" |
23 #include "cc/layers/layer_position_constraint.h" | 23 #include "cc/layers/layer_position_constraint.h" |
| 24 #include "cc/layers/layer_settings.h" |
24 #include "cc/trees/layer_tree_host.h" | 25 #include "cc/trees/layer_tree_host.h" |
25 #include "third_party/WebKit/public/platform/WebFloatPoint.h" | 26 #include "third_party/WebKit/public/platform/WebFloatPoint.h" |
26 #include "third_party/WebKit/public/platform/WebFloatRect.h" | 27 #include "third_party/WebKit/public/platform/WebFloatRect.h" |
27 #include "third_party/WebKit/public/platform/WebGraphicsLayerDebugInfo.h" | 28 #include "third_party/WebKit/public/platform/WebGraphicsLayerDebugInfo.h" |
28 #include "third_party/WebKit/public/platform/WebLayerClient.h" | 29 #include "third_party/WebKit/public/platform/WebLayerClient.h" |
29 #include "third_party/WebKit/public/platform/WebLayerPositionConstraint.h" | 30 #include "third_party/WebKit/public/platform/WebLayerPositionConstraint.h" |
30 #include "third_party/WebKit/public/platform/WebLayerScrollClient.h" | 31 #include "third_party/WebKit/public/platform/WebLayerScrollClient.h" |
31 #include "third_party/WebKit/public/platform/WebSize.h" | 32 #include "third_party/WebKit/public/platform/WebSize.h" |
32 #include "third_party/skia/include/utils/SkMatrix44.h" | 33 #include "third_party/skia/include/utils/SkMatrix44.h" |
33 #include "ui/gfx/geometry/rect_conversions.h" | 34 #include "ui/gfx/geometry/rect_conversions.h" |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 | 544 |
544 Layer* WebLayerImpl::layer() const { | 545 Layer* WebLayerImpl::layer() const { |
545 return layer_.get(); | 546 return layer_.get(); |
546 } | 547 } |
547 | 548 |
548 void WebLayerImpl::SetContentsOpaqueIsFixed(bool fixed) { | 549 void WebLayerImpl::SetContentsOpaqueIsFixed(bool fixed) { |
549 contents_opaque_is_fixed_ = fixed; | 550 contents_opaque_is_fixed_ = fixed; |
550 } | 551 } |
551 | 552 |
552 } // namespace cc_blink | 553 } // namespace cc_blink |
OLD | NEW |