Home | History | Annotate | Download | only in x11
      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
      3 // found in the LICENSE file.
      4 
      5 #include "ui/display/chromeos/x11/display_mode_x11.h"
      6 
      7 namespace ui {
      8 
      9 DisplayModeX11::DisplayModeX11(const gfx::Size& size,
     10                                bool interlaced,
     11                                float refresh_rate,
     12                                RRMode mode_id)
     13     : DisplayMode(size, interlaced, refresh_rate),
     14       mode_id_(mode_id) {}
     15 
     16 DisplayModeX11::~DisplayModeX11() {}
     17 
     18 }  // namespace ui
     19