// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_COMPOSITOR_LAYER_DELEGATE_H_ #define UI_COMPOSITOR_LAYER_DELEGATE_H_ #include "ui/compositor/compositor_export.h" #include "ui/compositor/property_change_reason.h" namespace gfx { class Rect; class Transform; } namespace ui { class PaintContext; // A delegate interface implemented by an object that renders to a Layer. class COMPOSITOR_EXPORT LayerDelegate { … }; } // namespace ui #endif // UI_COMPOSITOR_LAYER_DELEGATE_H_