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

Side by Side Diff: ash/common/wm_window.cc

Issue 2750463009: mash: Fix ShelfItem mojo struct; add enums and traits. (Closed)
Patch Set: Address comment. Created 3 years, 9 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
« no previous file with comments | « ash/common/test/test_shelf_delegate.h ('k') | ash/metrics/user_metrics_recorder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/common/wm_window.h" 5 #include "ash/common/wm_window.h"
6 6
7 #include "ash/aura/aura_layout_manager_adapter.h" 7 #include "ash/aura/aura_layout_manager_adapter.h"
8 #include "ash/aura/wm_shell_aura.h" 8 #include "ash/aura/wm_shell_aura.h"
9 #include "ash/common/ash_constants.h" 9 #include "ash/common/ash_constants.h"
10 #include "ash/common/shelf/shelf_item_types.h"
11 #include "ash/common/wm/window_state.h" 10 #include "ash/common/wm/window_state.h"
12 #include "ash/common/wm_layout_manager.h" 11 #include "ash/common/wm_layout_manager.h"
13 #include "ash/common/wm_transient_window_observer.h" 12 #include "ash/common/wm_transient_window_observer.h"
14 #include "ash/public/cpp/shell_window_ids.h" 13 #include "ash/public/cpp/shell_window_ids.h"
15 #include "ash/public/cpp/window_properties.h" 14 #include "ash/public/cpp/window_properties.h"
16 #include "ash/root_window_controller.h" 15 #include "ash/root_window_controller.h"
17 #include "ash/shell.h" 16 #include "ash/shell.h"
18 #include "ash/wm/resize_handle_window_targeter.h" 17 #include "ash/wm/resize_handle_window_targeter.h"
19 #include "ash/wm/resize_shadow_controller.h" 18 #include "ash/wm/resize_shadow_controller.h"
20 #include "ash/wm/window_animations.h" 19 #include "ash/wm/window_animations.h"
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 observer.OnTransientChildAdded(this, Get(transient)); 795 observer.OnTransientChildAdded(this, Get(transient));
797 } 796 }
798 797
799 void WmWindow::OnTransientChildRemoved(aura::Window* window, 798 void WmWindow::OnTransientChildRemoved(aura::Window* window,
800 aura::Window* transient) { 799 aura::Window* transient) {
801 for (auto& observer : transient_observers_) 800 for (auto& observer : transient_observers_)
802 observer.OnTransientChildRemoved(this, Get(transient)); 801 observer.OnTransientChildRemoved(this, Get(transient));
803 } 802 }
804 803
805 } // namespace ash 804 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/test/test_shelf_delegate.h ('k') | ash/metrics/user_metrics_recorder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698