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

Unified Diff: ui/views/mus/mus_client_observer.h

Issue 2507963002: Implement hit tests/client area. (Closed)
Patch Set: add it back 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
« no previous file with comments | « ui/views/mus/mus_client.cc ('k') | ui/views/widget/desktop_aura/desktop_native_widget_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/mus_client_observer.h
diff --git a/ui/views/mus/mus_client_observer.h b/ui/views/mus/mus_client_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..8d633a5b34708554f87f5c74223efe2e8d8e0d59
--- /dev/null
+++ b/ui/views/mus/mus_client_observer.h
@@ -0,0 +1,25 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_VIEWS_MUS_MUS_CLIENT_OBSERVER_H_
+#define UI_VIEWS_MUS_MUS_CLIENT_OBSERVER_H_
+
+#include "ui/views/mus/mus_export.h"
+
+namespace views {
+
+// Allows individual DesktopWindowTreeHostsMus to observe MusClient events.
+class VIEWS_MUS_EXPORT MusClientObserver {
+ public:
+ // Notification that windows should update per window values from the
+ // WindowManagerFrameValues.
+ virtual void OnWindowManagerFrameValuesChanged() = 0;
+
+ protected:
+ virtual ~MusClientObserver() {}
+};
+
+} // namespace views
+
+#endif // UI_VIEWS_MUS_MUS_CLIENT_OBSERVER_H_
« no previous file with comments | « ui/views/mus/mus_client.cc ('k') | ui/views/widget/desktop_aura/desktop_native_widget_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698