| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef UI_DISPLAY_SCREEN_H_ |
| 6 #define UI_DISPLAY_SCREEN_H_ |
| 7 |
| 8 #include "ui/gfx/screen.h" |
| 9 |
| 10 namespace display { |
| 11 |
| 12 // TODO(oshima): move the gfx::Screen to display::Screen. |
| 13 using Display = gfx::Display; |
| 14 using DisplayObserver = gfx::DisplayObserver; |
| 15 using Screen = gfx::Screen; |
| 16 |
| 17 } // display |
| 18 |
| 19 #endif // UI_DISPLAY_SCREEN_H_ |
| OLD | NEW |