| Index: ui/ozone/platform/dri/display_snapshot_dri.h
|
| diff --git a/ui/ozone/platform/dri/display_snapshot_dri.h b/ui/ozone/platform/dri/display_snapshot_dri.h
|
| deleted file mode 100644
|
| index 5c13188b1d4db9856c50ce8a7fea820b56fa0fe8..0000000000000000000000000000000000000000
|
| --- a/ui/ozone/platform/dri/display_snapshot_dri.h
|
| +++ /dev/null
|
| @@ -1,44 +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_OZONE_PLATFORM_DRI_DISPLAY_SNAPSHOT_DRI_H_
|
| -#define UI_OZONE_PLATFORM_DRI_DISPLAY_SNAPSHOT_DRI_H_
|
| -
|
| -#include "ui/display/types/display_snapshot.h"
|
| -#include "ui/ozone/platform/dri/scoped_drm_types.h"
|
| -
|
| -namespace ui {
|
| -
|
| -class DriWrapper;
|
| -
|
| -class DisplaySnapshotDri : public DisplaySnapshot {
|
| - public:
|
| - DisplaySnapshotDri(DriWrapper* drm,
|
| - drmModeConnector* connector,
|
| - drmModeCrtc* crtc,
|
| - uint32_t index);
|
| - virtual ~DisplaySnapshotDri();
|
| -
|
| - // Native properties of a display used by the DRI implementation in
|
| - // configuring this display.
|
| - uint32_t connector() const { return connector_; }
|
| - uint32_t crtc() const { return crtc_; }
|
| - drmModePropertyRes* dpms_property() const { return dpms_property_.get(); }
|
| -
|
| - // DisplaySnapshot overrides:
|
| - virtual std::string ToString() const override;
|
| -
|
| - private:
|
| - uint32_t connector_;
|
| - uint32_t crtc_;
|
| - ScopedDrmPropertyPtr dpms_property_;
|
| - std::string name_;
|
| - bool overscan_flag_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(DisplaySnapshotDri);
|
| -};
|
| -
|
| -} // namespace ui
|
| -
|
| -#endif // UI_OZONE_PLATFORM_DRI_DISPLAY_SNAPSHOT_DRI_H_
|
|
|