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

Unified Diff: ui/aura/client/aura_constants.h

Issue 2809073002: cros: allow aura window not considered activatable for pointer event (Closed)
Patch Set: const ui::Event* Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: ui/aura/client/aura_constants.h
diff --git a/ui/aura/client/aura_constants.h b/ui/aura/client/aura_constants.h
index bcfab7f07854d67c7c44d4517d03e44d6747643a..b67a543f0355c7899cd025b9f85ef02e86974a18 100644
--- a/ui/aura/client/aura_constants.h
+++ b/ui/aura/client/aura_constants.h
@@ -36,6 +36,11 @@ enum class WindowEmbedType {
AURA_EXPORT extern const WindowProperty<bool>* const
kAccessibilityFocusFallsbackToWidgetKey;
+// A property key to store whether activation on pointer event is enabled or
+// not. The default value is true, which means windows are activated when a
+// pointer down event occurs on them.
+AURA_EXPORT extern const WindowProperty<bool>* const kActivateOnPointerKey;
+
// A property key to store always-on-top flag.
AURA_EXPORT extern const WindowProperty<bool>* const kAlwaysOnTopKey;

Powered by Google App Engine
This is Rietveld 408576698