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

Unified Diff: ash/wm/maximize_mode/internal_input_device_list_x11.h

Issue 269633005: Only block internal touchpad and allow external mice to continue working in maximize mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 6 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 side-by-side diff with in-line comments
Download patch
Index: ash/wm/maximize_mode/internal_input_device_list_x11.h
diff --git a/ash/wm/maximize_mode/internal_input_device_list_x11.h b/ash/wm/maximize_mode/internal_input_device_list_x11.h
new file mode 100644
index 0000000000000000000000000000000000000000..3ef0de8fd11a20d9c7eb9535314df7cbbeb3d189
--- /dev/null
+++ b/ash/wm/maximize_mode/internal_input_device_list_x11.h
@@ -0,0 +1,38 @@
+// Copyright 2014 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 ASH_WM_MAXIMIZE_MODE_INTERNAL_INPUT_DEVICE_LIST_X11_H_
+#define ASH_WM_MAXIMIZE_MODE_INTERNAL_INPUT_DEVICE_LIST_X11_H_
+
+#include <set>
+
+#include "ash/wm/maximize_mode/internal_input_device_list.h"
+#include "base/macros.h"
+
+namespace ui {
+class Event;
+}
+
+namespace ash {
+
+// Identifies which input devices are internal and provides a helper function to
+// test if an input event came from an internal device.
+class InternalInputDeviceListX11 : public InternalInputDeviceList {
+ public:
+ InternalInputDeviceListX11();
+ virtual ~InternalInputDeviceListX11();
+
+ // InternalInputDeviceList:
+ virtual bool IsEventFromInternalDevice(const ui::Event* event) OVERRIDE;
+
+ private:
+ // Tracks the device ids of internal input devices.
+ std::set<int> internal_device_ids_;
+
+ DISALLOW_COPY_AND_ASSIGN(InternalInputDeviceListX11);
+};
+
+} // namespace ash
+
+#endif // ASH_WM_MAXIMIZE_MODE_INTERNAL_INPUT_DEVICE_LIST_X11_H_
« no previous file with comments | « ash/wm/maximize_mode/internal_input_device_list.h ('k') | ash/wm/maximize_mode/internal_input_device_list_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698