Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: ash/wm/common/wm_window_tracker.h

Issue 1913473002: Makes WorkspaceWindowResizer use ash/wm/common types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@root_controller_observer
Patch Set: merge to trunk Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698