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

Unified Diff: base/message_pump_x.cc

Issue 9773024: This patch implements Chromium's Aura gesture recognizer in terms of utouch-grail and utouch-frame … (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 9 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: base/message_pump_x.cc
===================================================================
--- base/message_pump_x.cc (revision 126124)
+++ base/message_pump_x.cc (working copy)
@@ -9,6 +9,8 @@
#include "base/basictypes.h"
#include "base/message_loop.h"
+#include <iostream>
Elliot Glaysher 2012/03/28 17:49:00 This will add a static initializer to this file. A
+
namespace {
gboolean XSourcePrepare(GSource* source, gint* timeout_ms) {
@@ -74,7 +76,7 @@
#if defined(USE_XI2_MT)
if (major < 2 || (major == 2 && minor < USE_XI2_MT)) {
DVLOG(1) << "XI version on server is " << major << "." << minor << ". "
- << "But 2." << USE_XI2_MT << " is required.";
+ << "But 2." << USE_XI2_MT << " is required.";
xiopcode = -1;
return;
}
« no previous file with comments | « AUTHORS ('k') | build/install-build-deps.sh » ('j') | content/plugin/plugin_thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698