chromium/ui/display/types/fake_display_controller.h

// Copyright 2016 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_DISPLAY_TYPES_FAKE_DISPLAY_CONTROLLER_H_
#define UI_DISPLAY_TYPES_FAKE_DISPLAY_CONTROLLER_H_

#include <stdint.h>

#include <memory>

#include "ui/display/types/display_types_export.h"

namespace gfx {
class Size;
}

namespace display {

class DisplaySnapshot;

// Controls the fake display state. Provided by the NativeDisplayDelegate if
// it is intended for use off device where there are no physical displays and
// we need to fake the display state.
class DISPLAY_TYPES_EXPORT FakeDisplayController {};

}  // namespace display

#endif  // UI_DISPLAY_TYPES_FAKE_DISPLAY_CONTROLLER_H_