Index: ui/compositor/layer.h |
diff --git a/ui/compositor/layer.h b/ui/compositor/layer.h |
index cd640b1a2b4b21f60c201ffa9fdd70dec0cf4069..1416f5f9602c6b52384c3713fa1947310faaed34 100644 |
--- a/ui/compositor/layer.h |
+++ b/ui/compositor/layer.h |
@@ -16,6 +16,7 @@ |
#include "cc/animation/layer_animation_event_observer.h" |
#include "cc/base/scoped_ptr_vector.h" |
#include "cc/layers/content_layer_client.h" |
+#include "cc/layers/layer_client.h" |
#include "cc/layers/texture_layer_client.h" |
#include "cc/resources/texture_mailbox.h" |
#include "third_party/skia/include/core/SkColor.h" |
@@ -62,6 +63,7 @@ class COMPOSITOR_EXPORT Layer |
: public LayerAnimationDelegate, |
NON_EXPORTED_BASE(public cc::ContentLayerClient), |
NON_EXPORTED_BASE(public cc::TextureLayerClient), |
+ NON_EXPORTED_BASE(public cc::LayerClient), |
NON_EXPORTED_BASE(public cc::LayerAnimationEventObserver) { |
public: |
Layer(); |
@@ -330,6 +332,9 @@ class COMPOSITOR_EXPORT Layer |
void SetForceRenderSurface(bool force); |
bool force_render_surface() const { return force_render_surface_; } |
+ // LayerClient |
+ virtual std::string DebugName() OVERRIDE; |
+ |
// LayerAnimationEventObserver |
virtual void OnAnimationStarted(const cc::AnimationEvent& event) OVERRIDE; |