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

Unified Diff: ui/aura/mus/window_tree_host_mus.h

Issue 2507963002: Implement hit tests/client area. (Closed)
Patch Set: Really fix compile Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: ui/aura/mus/window_tree_host_mus.h
diff --git a/ui/aura/mus/window_tree_host_mus.h b/ui/aura/mus/window_tree_host_mus.h
index 9209f60facdc3755aecaa076b0b9a6e19b862d53..be04b6d555615904948742b48ee0286ba6ee5334 100644
--- a/ui/aura/mus/window_tree_host_mus.h
+++ b/ui/aura/mus/window_tree_host_mus.h
@@ -50,6 +50,13 @@ class AURA_EXPORT WindowTreeHostMus : public aura::WindowTreeHostPlatform {
InputMethodMus* input_method() { return input_method_.get(); }
+ // Sets the client area on the underlying mus window.
+ void SetClientArea(const gfx::Insets& insets);
+
+ void ClearHitTestMask();
+
+ void SetHitTestMask(const gfx::Rect& rect);
+
// Intended only for WindowTreeClient to call.
void set_display_id(int64_t id) { display_id_ = id; }
int64_t display_id() const { return display_id_; }

Powered by Google App Engine
This is Rietveld 408576698