diff options
author | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-01 19:56:23 +0000 |
---|---|---|
committer | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-01 19:56:23 +0000 |
commit | b6cc6548fc7dde9211a16444a6709bc17cc88413 (patch) | |
tree | a1658bed67a072a3c1fb3a9b21741619113d87f4 /chrome/browser | |
parent | 27197de0f56a27e665116caa4a18b45578fffe07 (diff) | |
download | chromium_src-b6cc6548fc7dde9211a16444a6709bc17cc88413.zip chromium_src-b6cc6548fc7dde9211a16444a6709bc17cc88413.tar.gz chromium_src-b6cc6548fc7dde9211a16444a6709bc17cc88413.tar.bz2 |
aura: Turn XInput2 back on.
The previous attempt read values from the valuator without properly checking if
the valuator is set or not. This resulted in incorrect location at times (when X
or Y didn't change). So this change makes sure the valuator is set correctly
before reading from it.
BUG=103981
TEST=manually (on desktop and device)
Review URL: http://codereview.chromium.org/8634009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112499 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/chromeos/cros_stubs_aura.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/cros_stubs_aura.cc b/chrome/browser/chromeos/cros_stubs_aura.cc index 2ab7fd2..c47be2d 100644 --- a/chrome/browser/chromeos/cros_stubs_aura.cc +++ b/chrome/browser/chromeos/cros_stubs_aura.cc @@ -51,7 +51,7 @@ SystemNotification::~SystemNotification() { void SystemNotification::Show(const string16& message, bool urgent, bool sticky) { - NOTIMPLEMENTED(); + NOTIMPLEMENTED() << " " << message; } void SystemNotification::Show(const string16& message, |