layer_delegate.cc 944 B

123456789101112131415161718192021222324252627
  1. // Copyright 2016 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "ui/compositor/layer_delegate.h"
  5. namespace ui {
  6. void LayerDelegate::OnLayerBoundsChanged(const gfx::Rect& old_bounds,
  7. PropertyChangeReason reason) {}
  8. void LayerDelegate::OnLayerTransformed(const gfx::Transform& old_transform,
  9. PropertyChangeReason reason) {}
  10. void LayerDelegate::OnLayerOpacityChanged(PropertyChangeReason reason) {}
  11. void LayerDelegate::OnLayerAlphaShapeChanged() {}
  12. void LayerDelegate::OnLayerFillsBoundsOpaquelyChanged(
  13. PropertyChangeReason reason) {}
  14. void LayerDelegate::OnLayerClipRectChanged(const gfx::Rect& old_rect,
  15. PropertyChangeReason reason) {}
  16. void LayerDelegate::UpdateVisualState() {}
  17. } // namespace ui