mock_platform_window_delegate.cc 560 B

123456789101112131415161718
  1. // Copyright 2016 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 "ui/ozone/test/mock_platform_window_delegate.h"
  5. namespace ui {
  6. MockPlatformWindowDelegate::MockPlatformWindowDelegate() {}
  7. MockPlatformWindowDelegate::~MockPlatformWindowDelegate() {}
  8. bool operator==(const PlatformWindowDelegate::BoundsChange& a,
  9. const PlatformWindowDelegate::BoundsChange& b) {
  10. return a.origin_changed == b.origin_changed;
  11. }
  12. } // namespace ui