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

Unified Diff: components/exo/keyboard_device_configuration_delegate.h

Issue 2506263002: exo: Implement support for zcr_keyboard_configuration_v1 protocol. (Closed)
Patch Set: add one more TODO Created 4 years 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 | « components/exo/keyboard_delegate.h ('k') | components/exo/wayland/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/exo/keyboard_device_configuration_delegate.h
diff --git a/components/exo/keyboard_device_configuration_delegate.h b/components/exo/keyboard_device_configuration_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..263be3d654929e0a3a351e76d4eea9de2b37c5c4
--- /dev/null
+++ b/components/exo/keyboard_device_configuration_delegate.h
@@ -0,0 +1,27 @@
+// 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 COMPONENTS_EXO_KEYBOARD_DEVICE_CONFIGURATION_H_
+#define COMPONENTS_EXO_KEYBOARD_DEVICE_CONFIGURATION_H_
+
+namespace exo {
+class Keyboard;
+
+// Used as an extension to the KeyboardDelegate.
+class KeyboardDeviceConfigurationDelegate {
+ public:
+ // Called at the top of the keyboard's destructor, to give observers a chance
+ // to remove themselves.
+ virtual void OnKeyboardDestroying(Keyboard* keyboard) = 0;
+
+ // Called when used keyboard type changed.
+ virtual void OnKeyboardTypeChanged(bool is_physical) = 0;
+
+ protected:
+ virtual ~KeyboardDeviceConfigurationDelegate() {}
+};
+
+} // namespace exo
+
+#endif // COMPONENTS_EXO_KEYBOARD_DEVICE_CONFIGURATION_H_
« no previous file with comments | « components/exo/keyboard_delegate.h ('k') | components/exo/wayland/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698