queued_display_change.cc 656 B

123456789101112131415161718
  1. // Copyright 2018 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. #include "ash/keyboard/ui/queued_display_change.h"
  5. #include "ash/keyboard/ui/keyboard_ui_controller.h"
  6. #include "base/bind.h"
  7. #include "ui/display/display.h"
  8. namespace keyboard {
  9. QueuedDisplayChange::QueuedDisplayChange(const display::Display& display,
  10. const gfx::Rect& new_bounds_in_local)
  11. : new_display_(display), new_bounds_in_local_(new_bounds_in_local) {}
  12. QueuedDisplayChange::~QueuedDisplayChange() = default;
  13. } // namespace keyboard