1 // Copyright 2019 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/ozone/platform/wayland/host/wayland_window_observer.h"
6 
7 namespace ui {
8 
9 WaylandWindowObserver::~WaylandWindowObserver() = default;
10 
OnWindowAdded(WaylandWindow * window)11 void WaylandWindowObserver::OnWindowAdded(WaylandWindow* window) {}
12 
OnWindowRemoved(WaylandWindow * window)13 void WaylandWindowObserver::OnWindowRemoved(WaylandWindow* window) {}
14 
15 }  // namespace ui
16