Index: tools/xdisplaycheck/xdisplaycheck.cc |
diff --git a/tools/xdisplaycheck/xdisplaycheck.cc b/tools/xdisplaycheck/xdisplaycheck.cc |
index b7a975426684b25df39071534941a0f10f17601b..d76baefe5e8239ea854a753f091ba2059031fd1d 100644 |
--- a/tools/xdisplaycheck/xdisplaycheck.cc |
+++ b/tools/xdisplaycheck/xdisplaycheck.cc |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2009 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2011 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. |
// |
@@ -14,6 +14,7 @@ |
#include <stdio.h> |
#include <time.h> |
#include <X11/Xlib.h> |
+#include <X11/extensions/XInput2.h> |
Peter Mayo
2011/10/20 20:58:28
Does this not want to be wrapped in if defined() t
tony
2011/10/20 21:19:49
If the package is pulled in by install-build-deps.
sadrul
2011/10/20 21:42:38
I think it does. But added the check anyway to be
|
void Sleep(int duration_ms) { |
struct timespec sleep_time, remaining; |
@@ -31,13 +32,41 @@ void Sleep(int duration_ms) { |
int main(int argc, char* argv[]) { |
int kNumTries = 50; |
+ Display* display = NULL; |
for (int i = 0; i < kNumTries; ++i) { |
- Display* display = XOpenDisplay(NULL); |
+ display = XOpenDisplay(NULL); |
if (display) |
- return 0; |
+ break; |
Sleep(100); |
} |
- printf("Failed to connect to %s\n", XDisplayName(NULL)); |
- return -1; |
+ if (!display) { |
+ fprintf(stderr, "Failed to connect to %s\n", XDisplayName(NULL)); |
+ return -1; |
+ } |
+ |
+#if defined(TOUCH_UI) || defined(USE_AURA) |
+ // Check for XInput2 |
+ int opcode, event, err; |
+ if (!XQueryExtension(display, "XInputExtension", &opcode, &event, &err)) { |
+ fprintf(stderr, |
+ "Failed to get XInputExtension on %s.\n", XDisplayName(NULL)); |
+ return -1; |
+ } |
+ |
+ int major = 2, minor = 0; |
+ if (XIQueryVersion(display, &major, &minor) == BadRequest) { |
+ fprintf(stderr, |
+ "Server does not have XInput2 on %s.\n", XDisplayName(NULL)); |
+ return -1; |
+ } |
+ |
+ // Ask for the list of devices. This can cause some Xvfb to crash. |
+ int count = 0; |
+ XIDeviceInfo* devices = XIQueryDevice(display, XIAllDevices, &count); |
+ if (devices) |
+ XIFreeDeviceInfo(devices); |
+#endif |
+ |
+ return 0; |
} |