#ifndef ASH_SHELF_SHELF_LAYOUT_MANAGER_OBSERVER_H_
#define ASH_SHELF_SHELF_LAYOUT_MANAGER_OBSERVER_H_
#include "ash/ash_export.h"
#include "ash/public/cpp/shelf_types.h"
#include "ash/shelf/shelf_background_animator.h"
namespace ash {
enum class AnimationChangeType;
class ASH_EXPORT ShelfLayoutManagerObserver {
public:
virtual ~ShelfLayoutManagerObserver() {}
virtual void WillDeleteShelfLayoutManager() {}
virtual void OnShelfVisibilityStateChanged(ShelfVisibilityState new_state) {}
virtual void OnAutoHideStateChanged(ShelfAutoHideState new_state) {}
virtual void OnBackgroundUpdated(ShelfBackgroundType background_type,
AnimationChangeType change_type) {}
virtual void OnHotseatStateChanged(HotseatState old_state,
HotseatState new_state) {}
virtual void OnWorkAreaInsetsChanged() {}
};
}
#endif