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

Side by Side Diff: ash/wm/dock/docked_window_resizer.cc

Issue 2734733002: Revert "chromeos: Move files in //ash/common to //ash, part 3" (Closed)
Patch Set: 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/wm/dock/docked_window_resizer.h" 5 #include "ash/wm/dock/docked_window_resizer.h"
6 6
7 #include "ash/common/wm_window.h"
7 #include "ash/public/cpp/shell_window_ids.h" 8 #include "ash/public/cpp/shell_window_ids.h"
8 #include "ash/public/cpp/window_properties.h" 9 #include "ash/public/cpp/window_properties.h"
9 #include "ash/root_window_controller.h" 10 #include "ash/root_window_controller.h"
10 #include "ash/shell.h" 11 #include "ash/shell.h"
11 #include "ash/wm/dock/docked_window_layout_manager.h" 12 #include "ash/wm/dock/docked_window_layout_manager.h"
12 #include "ash/wm/window_parenting_utils.h" 13 #include "ash/wm/window_parenting_utils.h"
13 #include "ash/wm/window_state.h" 14 #include "ash/wm/window_state.h"
14 #include "ash/wm/wm_event.h" 15 #include "ash/wm/wm_event.h"
15 #include "ash/wm/workspace/magnetism_matcher.h" 16 #include "ash/wm/workspace/magnetism_matcher.h"
16 #include "ash/wm_window.h"
17 #include "ui/base/hit_test.h" 17 #include "ui/base/hit_test.h"
18 #include "ui/base/ui_base_types.h" 18 #include "ui/base/ui_base_types.h"
19 #include "ui/display/display.h" 19 #include "ui/display/display.h"
20 #include "ui/display/screen.h" 20 #include "ui/display/screen.h"
21 21
22 namespace ash { 22 namespace ash {
23 namespace { 23 namespace {
24 24
25 DockedWindowLayoutManager* GetDockedLayoutManagerAtPoint( 25 DockedWindowLayoutManager* GetDockedLayoutManagerAtPoint(
26 const gfx::Point& point) { 26 const gfx::Point& point) {
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 } else if (window->GetWindowState()->IsDocked() && 315 } else if (window->GetWindowState()->IsDocked() &&
316 action == DOCKED_ACTION_UNDOCK) { 316 action == DOCKED_ACTION_UNDOCK) {
317 const wm::WMEvent event(wm::WM_EVENT_NORMAL); 317 const wm::WMEvent event(wm::WM_EVENT_NORMAL);
318 window_state_->OnWMEvent(&event); 318 window_state_->OnWMEvent(&event);
319 } 319 }
320 320
321 return action; 321 return action;
322 } 322 }
323 323
324 } // namespace ash 324 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/dock/docked_window_layout_manager_unittest.cc ('k') | ash/wm/dock/docked_window_resizer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698