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

Side by Side Diff: ash/ash.gyp

Issue 2106823004: Refactors maximize mode event handling into its own class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 4 years, 5 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'ash_sources': [ 9 'ash_sources': [
10 'accelerators/accelerator_commands.cc', 10 'accelerators/accelerator_commands.cc',
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 'common/wm/dock/docked_window_layout_manager.h', 241 'common/wm/dock/docked_window_layout_manager.h',
242 'common/wm/dock/docked_window_layout_manager_observer.h', 242 'common/wm/dock/docked_window_layout_manager_observer.h',
243 'common/wm/dock/docked_window_resizer.cc', 243 'common/wm/dock/docked_window_resizer.cc',
244 'common/wm/dock/docked_window_resizer.h', 244 'common/wm/dock/docked_window_resizer.h',
245 'common/wm/drag_details.cc', 245 'common/wm/drag_details.cc',
246 'common/wm/drag_details.h', 246 'common/wm/drag_details.h',
247 'common/wm/focus_rules.cc', 247 'common/wm/focus_rules.cc',
248 'common/wm/focus_rules.h', 248 'common/wm/focus_rules.h',
249 'common/wm/fullscreen_window_finder.cc', 249 'common/wm/fullscreen_window_finder.cc',
250 'common/wm/fullscreen_window_finder.h', 250 'common/wm/fullscreen_window_finder.h',
251 'common/wm/maximize_mode/maximize_mode_event_handler.cc',
252 'common/wm/maximize_mode/maximize_mode_event_handler.h',
251 'common/wm/mru_window_tracker.cc', 253 'common/wm/mru_window_tracker.cc',
252 'common/wm/mru_window_tracker.h', 254 'common/wm/mru_window_tracker.h',
253 'common/wm/overview/overview_animation_type.h', 255 'common/wm/overview/overview_animation_type.h',
254 'common/wm/overview/scoped_overview_animation_settings.h', 256 'common/wm/overview/scoped_overview_animation_settings.h',
255 'common/wm/overview/scoped_overview_animation_settings_factory.cc', 257 'common/wm/overview/scoped_overview_animation_settings_factory.cc',
256 'common/wm/overview/scoped_overview_animation_settings_factory.h', 258 'common/wm/overview/scoped_overview_animation_settings_factory.h',
257 'common/wm/overview/scoped_transform_overview_window.cc', 259 'common/wm/overview/scoped_transform_overview_window.cc',
258 'common/wm/overview/scoped_transform_overview_window.h', 260 'common/wm/overview/scoped_transform_overview_window.h',
259 'common/wm/overview/window_grid.cc', 261 'common/wm/overview/window_grid.cc',
260 'common/wm/overview/window_grid.h', 262 'common/wm/overview/window_grid.h',
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 'wm/immersive_revealed_lock.h', 680 'wm/immersive_revealed_lock.h',
679 'wm/lock_layout_manager.cc', 681 'wm/lock_layout_manager.cc',
680 'wm/lock_layout_manager.h', 682 'wm/lock_layout_manager.h',
681 'wm/lock_state_controller.cc', 683 'wm/lock_state_controller.cc',
682 'wm/lock_state_controller.h', 684 'wm/lock_state_controller.h',
683 'wm/lock_state_observer.h', 685 'wm/lock_state_observer.h',
684 'wm/lock_window_state.cc', 686 'wm/lock_window_state.cc',
685 'wm/lock_window_state.h', 687 'wm/lock_window_state.h',
686 'wm/maximize_mode/maximize_mode_controller.cc', 688 'wm/maximize_mode/maximize_mode_controller.cc',
687 'wm/maximize_mode/maximize_mode_controller.h', 689 'wm/maximize_mode/maximize_mode_controller.h',
690 'wm/maximize_mode/maximize_mode_event_handler_aura.cc',
691 'wm/maximize_mode/maximize_mode_event_handler_aura.h',
688 'wm/maximize_mode/maximize_mode_window_manager.cc', 692 'wm/maximize_mode/maximize_mode_window_manager.cc',
689 'wm/maximize_mode/maximize_mode_window_manager.h', 693 'wm/maximize_mode/maximize_mode_window_manager.h',
690 'wm/maximize_mode/maximize_mode_window_state.cc', 694 'wm/maximize_mode/maximize_mode_window_state.cc',
691 'wm/maximize_mode/maximize_mode_window_state.h', 695 'wm/maximize_mode/maximize_mode_window_state.h',
692 'wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard.h', 696 'wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard.h',
693 'wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.cc', 697 'wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.cc',
694 'wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.h', 698 'wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.h',
695 'wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_x11.cc', 699 'wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_x11.cc',
696 'wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_x11.h', 700 'wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_x11.h',
697 'wm/maximize_mode/workspace_backdrop_delegate.cc', 701 'wm/maximize_mode/workspace_backdrop_delegate.cc',
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
1450 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1454 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1451 ], 1455 ],
1452 } 1456 }
1453 ], 1457 ],
1454 ], 1458 ],
1455 }, 1459 },
1456 ], 1460 ],
1457 }], 1461 }],
1458 ], 1462 ],
1459 } 1463 }
OLDNEW
« no previous file with comments | « no previous file | ash/aura/wm_shell_aura.h » ('j') | ash/common/wm/maximize_mode/maximize_mode_event_handler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698