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

Unified Diff: ui/display/chromeos/x11/display_mode_x11.h

Issue 2540313002: Split //ui/display and create //ui/display/manager. (Closed)
Patch Set: Cleanup export header. Created 4 years 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/chromeos/x11/DEPS ('k') | ui/display/chromeos/x11/display_mode_x11.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/chromeos/x11/display_mode_x11.h
diff --git a/ui/display/chromeos/x11/display_mode_x11.h b/ui/display/chromeos/x11/display_mode_x11.h
deleted file mode 100644
index 737fcc4fbe1a4a137d51b4aa3bbe0d9daead8ea2..0000000000000000000000000000000000000000
--- a/ui/display/chromeos/x11/display_mode_x11.h
+++ /dev/null
@@ -1,37 +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_CHROMEOS_X11_DISPLAY_MODE_X11_H_
-#define UI_DISPLAY_CHROMEOS_X11_DISPLAY_MODE_X11_H_
-
-#include "base/macros.h"
-#include "ui/display/display_export.h"
-#include "ui/display/types/display_mode.h"
-
-// Forward declare from Xlib and Xrandr.
-typedef unsigned long XID;
-typedef XID RRMode;
-
-namespace ui {
-
-class DISPLAY_EXPORT DisplayModeX11 : public DisplayMode {
- public:
- DisplayModeX11(const gfx::Size& size,
- bool interlaced,
- float refresh_rate,
- RRMode mode_id);
- ~DisplayModeX11() override;
- std::unique_ptr<DisplayMode> Clone() const override;
-
- RRMode mode_id() const { return mode_id_; }
-
- private:
- RRMode mode_id_;
-
- DISALLOW_COPY_AND_ASSIGN(DisplayModeX11);
-};
-
-} // namespace ui
-
-#endif // UI_DISPLAY_CHROMEOS_X11_DISPLAY_MODE_X11_H_
« no previous file with comments | « ui/display/chromeos/x11/DEPS ('k') | ui/display/chromeos/x11/display_mode_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698