chromium/ui/aura/window_tracker.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/aura/window_tracker.h"

#include "base/containers/contains.h"
#include "base/ranges/algorithm.h"
#include "ui/aura/window.h"

namespace aura {

WindowTracker::WindowTracker(const WindowList& windows) {}

WindowTracker::WindowTracker() = default;

WindowTracker::~WindowTracker() {}

void WindowTracker::Add(Window* window) {}

void WindowTracker::RemoveAll() {}

void WindowTracker::Remove(Window* window) {}

Window* WindowTracker::Pop() {}

bool WindowTracker::Contains(Window* window) const {}

void WindowTracker::OnWindowDestroying(Window* window) {}

}  // namespace aura