blob: 38ea0001a556694a11e262e9f04c4b6e17b0a9f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TRACKER_H_
#define COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TRACKER_H_
#include <stdint.h>
#include <set>
#include "base/macros.h"
#include "components/mus/common/window_tracker.h"
#include "components/mus/public/cpp/window_observer.h"
#include "mojo/public/cpp/system/macros.h"
namespace mus {
using WindowTracker = WindowTrackerTemplate<Window, WindowObserver>;
} // namespace mus
#endif // COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TRACKER_H_
|