| 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_DISPLAY_MODE_H_ | 5 #ifndef UI_DISPLAY_TYPES_DISPLAY_MODE_H_ |
| 6 #define UI_DISPLAY_TYPES_DISPLAY_MODE_H_ | 6 #define UI_DISPLAY_TYPES_DISPLAY_MODE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <ostream> | 9 #include <ostream> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 virtual std::unique_ptr<DisplayMode> Clone() const; | 24 virtual std::unique_ptr<DisplayMode> Clone() const; |
| 25 | 25 |
| 26 const gfx::Size& size() const { return size_; } | 26 const gfx::Size& size() const { return size_; } |
| 27 bool is_interlaced() const { return is_interlaced_; } | 27 bool is_interlaced() const { return is_interlaced_; } |
| 28 float refresh_rate() const { return refresh_rate_; } | 28 float refresh_rate() const { return refresh_rate_; } |
| 29 | 29 |
| 30 virtual std::string ToString() const; | 30 virtual std::string ToString() const; |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 gfx::Size size_; | 33 gfx::Size size_; |
| 34 float refresh_rate_; |
| 34 bool is_interlaced_; | 35 bool is_interlaced_; |
| 35 float refresh_rate_; | |
| 36 | 36 |
| 37 DISALLOW_COPY_AND_ASSIGN(DisplayMode); | 37 DISALLOW_COPY_AND_ASSIGN(DisplayMode); |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 // Used to by gtest to print readable errors. | 40 // Used to by gtest to print readable errors. |
| 41 DISPLAY_TYPES_EXPORT void PrintTo(const DisplayMode& mode, std::ostream* os); | 41 DISPLAY_TYPES_EXPORT void PrintTo(const DisplayMode& mode, std::ostream* os); |
| 42 | 42 |
| 43 } // namespace display | 43 } // namespace display |
| 44 | 44 |
| 45 #endif // UI_DISPLAY_TYPES_DISPLAY_MODE_H_ | 45 #endif // UI_DISPLAY_TYPES_DISPLAY_MODE_H_ |
| OLD | NEW |