| Index: cc/layers/texture_layer.cc
|
| diff --git a/cc/layers/texture_layer.cc b/cc/layers/texture_layer.cc
|
| index 952078d5e25ca3afb4534a65c718e473e58540f1..85df0f2b51c1651c19407d6f756fdbdccba11eb3 100644
|
| --- a/cc/layers/texture_layer.cc
|
| +++ b/cc/layers/texture_layer.cc
|
| @@ -8,6 +8,7 @@
|
| #include "base/callback_helpers.h"
|
| #include "base/location.h"
|
| #include "base/synchronization/lock.h"
|
| +#include "base/trace_event/trace_event.h"
|
| #include "cc/base/simple_enclosed_region.h"
|
| #include "cc/layers/texture_layer_client.h"
|
| #include "cc/layers/texture_layer_impl.h"
|
| @@ -226,6 +227,7 @@ bool TextureLayer::Update() {
|
|
|
| void TextureLayer::PushPropertiesTo(LayerImpl* layer) {
|
| Layer::PushPropertiesTo(layer);
|
| + TRACE_EVENT0("cc", "TextureLayer::PushPropertiesTo");
|
|
|
| TextureLayerImpl* texture_layer = static_cast<TextureLayerImpl*>(layer);
|
| texture_layer->SetFlipped(flipped_);
|
|
|