Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Unified Diff: ui/display/types/chromeos/display_mode.h

Issue 558253003: display: Move ui/display/types/chromeos/* to ui/display/types/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/display/types/BUILD.gn ('k') | ui/display/types/chromeos/display_mode.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/types/chromeos/display_mode.h
diff --git a/ui/display/types/chromeos/display_mode.h b/ui/display/types/chromeos/display_mode.h
deleted file mode 100644
index 092a43a0e1f5b481c223ed9b3ff28c2dada75d30..0000000000000000000000000000000000000000
--- a/ui/display/types/chromeos/display_mode.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef UI_DISPLAY_TYPES_CHROMEOS_DISPLAY_MODE_H_
-#define UI_DISPLAY_TYPES_CHROMEOS_DISPLAY_MODE_H_
-
-#include <string>
-
-#include "base/macros.h"
-#include "ui/display/types/display_types_export.h"
-#include "ui/gfx/geometry/size.h"
-
-namespace ui {
-
-// This class represents the basic information for a native mode. Platforms will
-// extend this class to add platform specific information about the mode.
-class DISPLAY_TYPES_EXPORT DisplayMode {
- public:
- DisplayMode(const gfx::Size& size, bool interlaced, float refresh_rate);
- virtual ~DisplayMode();
-
- const gfx::Size& size() const { return size_; }
- bool is_interlaced() const { return is_interlaced_; }
- float refresh_rate() const { return refresh_rate_; }
-
- virtual std::string ToString() const;
-
- private:
- gfx::Size size_;
- bool is_interlaced_;
- float refresh_rate_;
-
- DISALLOW_COPY_AND_ASSIGN(DisplayMode);
-};
-
-} // namespace ui
-
-#endif // UI_DISPLAY_TYPES_CHROMEOS_DISPLAY_MODE_H_
« no previous file with comments | « ui/display/types/BUILD.gn ('k') | ui/display/types/chromeos/display_mode.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698