| 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 <stddef.h> |
| 8 #include <stdint.h> |
| 9 |
| 7 #include <utility> | 10 #include <utility> |
| 8 #include <vector> | 11 #include <vector> |
| 9 | 12 |
| 10 #include "base/bind.h" | 13 #include "base/bind.h" |
| 11 #include "base/lazy_instance.h" | 14 #include "base/lazy_instance.h" |
| 12 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
| 13 #include "base/threading/thread_checker.h" | 16 #include "base/threading/thread_checker.h" |
| 14 #include "base/trace_event/trace_event_impl.h" | 17 #include "base/trace_event/trace_event_impl.h" |
| 15 #include "cc/animation/animation.h" | 18 #include "cc/animation/animation.h" |
| 16 #include "cc/animation/mutable_properties.h" | 19 #include "cc/animation/mutable_properties.h" |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 | 560 |
| 558 Layer* WebLayerImpl::layer() const { | 561 Layer* WebLayerImpl::layer() const { |
| 559 return layer_.get(); | 562 return layer_.get(); |
| 560 } | 563 } |
| 561 | 564 |
| 562 void WebLayerImpl::SetContentsOpaqueIsFixed(bool fixed) { | 565 void WebLayerImpl::SetContentsOpaqueIsFixed(bool fixed) { |
| 563 contents_opaque_is_fixed_ = fixed; | 566 contents_opaque_is_fixed_ = fixed; |
| 564 } | 567 } |
| 565 | 568 |
| 566 } // namespace cc_blink | 569 } // namespace cc_blink |
| OLD | NEW |