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

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

Issue 1991973003: mash: Preliminary support for widget hit test masks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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/window_manager_access_policy.cc ('k') | components/mus/ws/window_tree.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_TREE_H_ 5 #ifndef COMPONENTS_MUS_WS_WINDOW_TREE_H_
6 #define COMPONENTS_MUS_WS_WINDOW_TREE_H_ 6 #define COMPONENTS_MUS_WS_WINDOW_TREE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 mojo::TextInputStatePtr state) override; 374 mojo::TextInputStatePtr state) override;
375 void SetImeVisibility(Id transport_window_id, 375 void SetImeVisibility(Id transport_window_id,
376 bool visible, 376 bool visible,
377 mojo::TextInputStatePtr state) override; 377 mojo::TextInputStatePtr state) override;
378 void OnWindowInputEventAck(uint32_t event_id, 378 void OnWindowInputEventAck(uint32_t event_id,
379 mojom::EventResult result) override; 379 mojom::EventResult result) override;
380 void SetClientArea( 380 void SetClientArea(
381 Id transport_window_id, 381 Id transport_window_id,
382 mojo::InsetsPtr insets, 382 mojo::InsetsPtr insets,
383 mojo::Array<mojo::RectPtr> transport_additional_client_areas) override; 383 mojo::Array<mojo::RectPtr> transport_additional_client_areas) override;
384 void SetHitTestMask(Id transport_window_id, mojo::RectPtr mask) override;
384 void GetWindowManagerClient( 385 void GetWindowManagerClient(
385 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) 386 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal)
386 override; 387 override;
387 void GetCursorLocationMemory(const GetCursorLocationMemoryCallback& callback) 388 void GetCursorLocationMemory(const GetCursorLocationMemoryCallback& callback)
388 override; 389 override;
389 390
390 // mojom::WindowManagerClient: 391 // mojom::WindowManagerClient:
391 void AddAccelerator(uint32_t id, 392 void AddAccelerator(uint32_t id,
392 mojom::EventMatcherPtr event_matcher, 393 mojom::EventMatcherPtr event_matcher,
393 const AddAcceleratorCallback& callback) override; 394 const AddAcceleratorCallback& callback) override;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 std::unique_ptr<WaitingForTopLevelWindowInfo> 464 std::unique_ptr<WaitingForTopLevelWindowInfo>
464 waiting_for_top_level_window_info_; 465 waiting_for_top_level_window_info_;
465 466
466 DISALLOW_COPY_AND_ASSIGN(WindowTree); 467 DISALLOW_COPY_AND_ASSIGN(WindowTree);
467 }; 468 };
468 469
469 } // namespace ws 470 } // namespace ws
470 } // namespace mus 471 } // namespace mus
471 472
472 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_ 473 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_
OLDNEW
« no previous file with comments | « components/mus/ws/window_manager_access_policy.cc ('k') | components/mus/ws/window_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698