#ifndef ASH_AMBIENT_MODEL_AMBIENT_TOPIC_QUEUE_SLIDESHOW_DELEGATE_H_
#define ASH_AMBIENT_MODEL_AMBIENT_TOPIC_QUEUE_SLIDESHOW_DELEGATE_H_
#include "ash/ambient/model/ambient_topic_queue.h"
#include "ash/ash_export.h"
namespace ash {
class ASH_EXPORT AmbientTopicQueueSlideshowDelegate
: public AmbientTopicQueue::Delegate {
public:
AmbientTopicQueueSlideshowDelegate();
AmbientTopicQueueSlideshowDelegate(
const AmbientTopicQueueSlideshowDelegate&) = delete;
AmbientTopicQueueSlideshowDelegate& operator=(
const AmbientTopicQueueSlideshowDelegate&) = delete;
~AmbientTopicQueueSlideshowDelegate() override;
std::vector<gfx::Size> GetTopicSizes() override;
};
}
#endif