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

Side by Side Diff: components/mus/ws/window_manager_access_policy.h

Issue 1759523002: mus: Server-side implementation of modal windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: SetAsModal -> SetModal + Other review comments addressed Created 4 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 | « components/mus/ws/server_window.cc ('k') | components/mus/ws/window_manager_access_policy.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_MUS_WS_WINDOW_MANAGER_ACCESS_POLICY_H_ 5 #ifndef COMPONENTS_MUS_WS_WINDOW_MANAGER_ACCESS_POLICY_H_
6 #define COMPONENTS_MUS_WS_WINDOW_MANAGER_ACCESS_POLICY_H_ 6 #define COMPONENTS_MUS_WS_WINDOW_MANAGER_ACCESS_POLICY_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 12 matching lines...) Expand all
23 ~WindowManagerAccessPolicy() override; 23 ~WindowManagerAccessPolicy() override;
24 24
25 // AccessPolicy: 25 // AccessPolicy:
26 bool CanRemoveWindowFromParent(const ServerWindow* window) const override; 26 bool CanRemoveWindowFromParent(const ServerWindow* window) const override;
27 bool CanAddWindow(const ServerWindow* parent, 27 bool CanAddWindow(const ServerWindow* parent,
28 const ServerWindow* child) const override; 28 const ServerWindow* child) const override;
29 bool CanAddTransientWindow(const ServerWindow* parent, 29 bool CanAddTransientWindow(const ServerWindow* parent,
30 const ServerWindow* child) const override; 30 const ServerWindow* child) const override;
31 bool CanRemoveTransientWindowFromParent( 31 bool CanRemoveTransientWindowFromParent(
32 const ServerWindow* window) const override; 32 const ServerWindow* window) const override;
33 bool CanSetModal(const ServerWindow* window) const override;
33 bool CanReorderWindow(const ServerWindow* window, 34 bool CanReorderWindow(const ServerWindow* window,
34 const ServerWindow* relative_window, 35 const ServerWindow* relative_window,
35 mojom::OrderDirection direction) const override; 36 mojom::OrderDirection direction) const override;
36 bool CanDeleteWindow(const ServerWindow* window) const override; 37 bool CanDeleteWindow(const ServerWindow* window) const override;
37 bool CanGetWindowTree(const ServerWindow* window) const override; 38 bool CanGetWindowTree(const ServerWindow* window) const override;
38 bool CanDescendIntoWindowForWindowTree( 39 bool CanDescendIntoWindowForWindowTree(
39 const ServerWindow* window) const override; 40 const ServerWindow* window) const override;
40 bool CanEmbed(const ServerWindow* window, 41 bool CanEmbed(const ServerWindow* window,
41 uint32_t policy_bitmask) const override; 42 uint32_t policy_bitmask) const override;
42 bool CanChangeWindowVisibility(const ServerWindow* window) const override; 43 bool CanChangeWindowVisibility(const ServerWindow* window) const override;
(...skipping 21 matching lines...) Expand all
64 AccessPolicyDelegate* delegate_; 65 AccessPolicyDelegate* delegate_;
65 66
66 DISALLOW_COPY_AND_ASSIGN(WindowManagerAccessPolicy); 67 DISALLOW_COPY_AND_ASSIGN(WindowManagerAccessPolicy);
67 }; 68 };
68 69
69 } // namespace ws 70 } // namespace ws
70 71
71 } // namespace mus 72 } // namespace mus
72 73
73 #endif // COMPONENTS_MUS_WS_WINDOW_MANAGER_ACCESS_POLICY_H_ 74 #endif // COMPONENTS_MUS_WS_WINDOW_MANAGER_ACCESS_POLICY_H_
OLDNEW
« no previous file with comments | « components/mus/ws/server_window.cc ('k') | components/mus/ws/window_manager_access_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698