Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 5 #ifndef ASH_WM_COMMON_WM_WINDOW_TRACKER_H_ | |
| 6 #define ASH_WM_COMMON_WM_WINDOW_TRACKER_H_ | |
| 7 | |
| 8 #include "ash/wm/common/wm_window_observer.h" | |
| 9 #include "base/compiler_specific.h" | |
| 10 #include "base/macros.h" | |
|
James Cook
2016/04/22 20:06:13
Do you need macros.h or compiler_specific.h here?
sky
2016/04/22 20:13:20
Nope. Nuked.
| |
| 11 #include "ui/base/window_tracker_template.h" | |
| 12 | |
| 13 namespace ash { | |
| 14 namespace wm { | |
| 15 | |
| 16 using WmWindowTracker = ui::WindowTrackerTemplate<WmWindow, WmWindowObserver>; | |
| 17 | |
| 18 } // namespace wm | |
| 19 } // namespace ash | |
| 20 | |
| 21 #endif // ASH_WM_COMMON_WM_WINDOW_TRACKER_H_ | |
| OLD | NEW |