#ifndef ASH_HOST_ASH_WINDOW_TREE_HOST_DELEGATE_H_
#define ASH_HOST_ASH_WINDOW_TREE_HOST_DELEGATE_H_
#include <stdint.h>
#include "ash/ash_export.h"
namespace aura {
class WindowTreeHost;
}
namespace display {
class Display;
}
namespace ash {
class ASH_EXPORT AshWindowTreeHostDelegate {
public:
AshWindowTreeHostDelegate() = default;
AshWindowTreeHostDelegate(const AshWindowTreeHostDelegate&) = delete;
AshWindowTreeHostDelegate& operator=(const AshWindowTreeHostDelegate&) =
delete;
virtual ~AshWindowTreeHostDelegate() = default;
virtual const display::Display* GetDisplayById(int64_t display_id) const = 0;
virtual void SetCurrentEventTargeterSourceHost(
aura::WindowTreeHost* targeter_src_host) = 0;
};
}
#endif