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

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

Issue 2215223004: mash: Migrate ShelfLayoutManager ScreenUtil usage to ash common types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Restore screen bounds conversion for app list. 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
« no previous file with comments | « ash/app_list/app_list_presenter_delegate.cc ('k') | ash/aura/wm_shell_aura.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 #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 17 matching lines...) Expand all
28 28
29 // WmShell: 29 // WmShell:
30 void Shutdown() override; 30 void Shutdown() override;
31 WmWindow* NewContainerWindow() override; 31 WmWindow* NewContainerWindow() override;
32 WmWindow* GetFocusedWindow() override; 32 WmWindow* GetFocusedWindow() override;
33 WmWindow* GetActiveWindow() override; 33 WmWindow* GetActiveWindow() override;
34 WmWindow* GetPrimaryRootWindow() override; 34 WmWindow* GetPrimaryRootWindow() override;
35 WmWindow* GetRootWindowForDisplayId(int64_t display_id) override; 35 WmWindow* GetRootWindowForDisplayId(int64_t display_id) override;
36 const DisplayInfo& GetDisplayInfo(int64_t display_id) const override; 36 const DisplayInfo& GetDisplayInfo(int64_t display_id) const override;
37 bool IsActiveDisplayId(int64_t display_id) const override; 37 bool IsActiveDisplayId(int64_t display_id) const override;
38 display::Display GetFirstDisplay() const override;
39 bool IsInUnifiedMode() const override;
38 bool IsForceMaximizeOnFirstRun() override; 40 bool IsForceMaximizeOnFirstRun() override;
39 bool IsPinned() override; 41 bool IsPinned() override;
40 void SetPinnedWindow(WmWindow* window) override; 42 void SetPinnedWindow(WmWindow* window) override;
41 bool CanShowWindowForUser(WmWindow* window) override; 43 bool CanShowWindowForUser(WmWindow* window) override;
42 void LockCursor() override; 44 void LockCursor() override;
43 void UnlockCursor() override; 45 void UnlockCursor() override;
44 std::vector<WmWindow*> GetAllRootWindows() override; 46 std::vector<WmWindow*> GetAllRootWindows() override;
45 void RecordUserMetricsAction(UserMetricsAction action) override; 47 void RecordUserMetricsAction(UserMetricsAction action) override;
46 void RecordTaskSwitchMetric(TaskSwitchSource source) override; 48 void RecordTaskSwitchMetric(TaskSwitchSource source) override;
47 void ShowContextMenu(const gfx::Point& location_in_screen, 49 void ShowContextMenu(const gfx::Point& location_in_screen,
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 89
88 bool added_display_observer_ = false; 90 bool added_display_observer_ = false;
89 base::ObserverList<WmDisplayObserver> display_observers_; 91 base::ObserverList<WmDisplayObserver> display_observers_;
90 92
91 DISALLOW_COPY_AND_ASSIGN(WmShellAura); 93 DISALLOW_COPY_AND_ASSIGN(WmShellAura);
92 }; 94 };
93 95
94 } // namespace ash 96 } // namespace ash
95 97
96 #endif // ASH_AURA_WM_SHELL_AURA_H_ 98 #endif // ASH_AURA_WM_SHELL_AURA_H_
OLDNEW
« no previous file with comments | « ash/app_list/app_list_presenter_delegate.cc ('k') | ash/aura/wm_shell_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698