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

Side by Side Diff: ash/aura/wm_shell_aura.h

Issue 2222653002: Moves CustomFrameViewAsh to common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 4 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 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 #ifndef ASH_AURA_WM_SHELL_AURA_H_ 5 #ifndef ASH_AURA_WM_SHELL_AURA_H_
6 #define ASH_AURA_WM_SHELL_AURA_H_ 6 #define ASH_AURA_WM_SHELL_AURA_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "ash/ash_export.h" 10 #include "ash/ash_export.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 ui::MenuSourceType source_type) override; 49 ui::MenuSourceType source_type) override;
50 std::unique_ptr<WindowResizer> CreateDragWindowResizer( 50 std::unique_ptr<WindowResizer> CreateDragWindowResizer(
51 std::unique_ptr<WindowResizer> next_window_resizer, 51 std::unique_ptr<WindowResizer> next_window_resizer,
52 wm::WindowState* window_state) override; 52 wm::WindowState* window_state) override;
53 std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter() 53 std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter()
54 override; 54 override;
55 std::unique_ptr<wm::MaximizeModeEventHandler> CreateMaximizeModeEventHandler() 55 std::unique_ptr<wm::MaximizeModeEventHandler> CreateMaximizeModeEventHandler()
56 override; 56 override;
57 std::unique_ptr<ScopedDisableInternalMouseAndKeyboard> 57 std::unique_ptr<ScopedDisableInternalMouseAndKeyboard>
58 CreateScopedDisableInternalMouseAndKeyboard() override; 58 CreateScopedDisableInternalMouseAndKeyboard() override;
59 std::unique_ptr<WmImmersiveFullscreenController>
60 CreateImmersiveFullscreenController() override;
59 void OnOverviewModeStarting() override; 61 void OnOverviewModeStarting() override;
60 void OnOverviewModeEnded() override; 62 void OnOverviewModeEnded() override;
61 SessionStateDelegate* GetSessionStateDelegate() override; 63 SessionStateDelegate* GetSessionStateDelegate() override;
62 void AddActivationObserver(WmActivationObserver* observer) override; 64 void AddActivationObserver(WmActivationObserver* observer) override;
63 void RemoveActivationObserver(WmActivationObserver* observer) override; 65 void RemoveActivationObserver(WmActivationObserver* observer) override;
64 void AddDisplayObserver(WmDisplayObserver* observer) override; 66 void AddDisplayObserver(WmDisplayObserver* observer) override;
65 void RemoveDisplayObserver(WmDisplayObserver* observer) override; 67 void RemoveDisplayObserver(WmDisplayObserver* observer) override;
66 void AddPointerWatcher(views::PointerWatcher* watcher) override; 68 void AddPointerWatcher(views::PointerWatcher* watcher) override;
67 void RemovePointerWatcher(views::PointerWatcher* watcher) override; 69 void RemovePointerWatcher(views::PointerWatcher* watcher) override;
68 bool IsTouchDown() override; 70 bool IsTouchDown() override;
(...skipping 19 matching lines...) Expand all
88 90
89 bool added_display_observer_ = false; 91 bool added_display_observer_ = false;
90 base::ObserverList<WmDisplayObserver> display_observers_; 92 base::ObserverList<WmDisplayObserver> display_observers_;
91 93
92 DISALLOW_COPY_AND_ASSIGN(WmShellAura); 94 DISALLOW_COPY_AND_ASSIGN(WmShellAura);
93 }; 95 };
94 96
95 } // namespace ash 97 } // namespace ash
96 98
97 #endif // ASH_AURA_WM_SHELL_AURA_H_ 99 #endif // ASH_AURA_WM_SHELL_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698