// 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_SCREEN_BASE_H_ #define UI_DISPLAY_SCREEN_BASE_H_ #include <vector> #include "ui/display/display.h" #include "ui/display/display_export.h" #include "ui/display/display_list.h" #include "ui/display/screen.h" namespace display { // Simple screen implementation with a display list. class DISPLAY_EXPORT ScreenBase : public Screen { … }; } // namespace display #endif // UI_DISPLAY_SCREEN_BASE_H_