| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_DISPLAY_TYPES_CHROMEOS_DISPLAY_MODE_H_ | 5 #ifndef UI_DISPLAY_TYPES_DISPLAY_MODE_H_ |
| 6 #define UI_DISPLAY_TYPES_CHROMEOS_DISPLAY_MODE_H_ | 6 #define UI_DISPLAY_TYPES_DISPLAY_MODE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "ui/display/types/display_types_export.h" | 11 #include "ui/display/types/display_types_export.h" |
| 12 #include "ui/gfx/geometry/size.h" | 12 #include "ui/gfx/geometry/size.h" |
| 13 | 13 |
| 14 namespace ui { | 14 namespace ui { |
| 15 | 15 |
| 16 // This class represents the basic information for a native mode. Platforms will | 16 // This class represents the basic information for a native mode. Platforms will |
| (...skipping 12 matching lines...) Expand all Loading... |
| 29 private: | 29 private: |
| 30 gfx::Size size_; | 30 gfx::Size size_; |
| 31 bool is_interlaced_; | 31 bool is_interlaced_; |
| 32 float refresh_rate_; | 32 float refresh_rate_; |
| 33 | 33 |
| 34 DISALLOW_COPY_AND_ASSIGN(DisplayMode); | 34 DISALLOW_COPY_AND_ASSIGN(DisplayMode); |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 } // namespace ui | 37 } // namespace ui |
| 38 | 38 |
| 39 #endif // UI_DISPLAY_TYPES_CHROMEOS_DISPLAY_MODE_H_ | 39 #endif // UI_DISPLAY_TYPES_DISPLAY_MODE_H_ |
| OLD | NEW |