diff options
| author | mustaq <mustaq@chromium.org> | 2015-06-02 15:46:22 -0700 |
|---|---|---|
| committer | Commit bot <commit-bot@chromium.org> | 2015-06-02 22:46:49 +0000 |
| commit | dfb9aadbcbefab6e593acdd525170b97ccbc1db1 (patch) | |
| tree | f8278c8c6525a5c7662cf008b993632c398d4135 | |
| parent | a351f88381ed416acb0bf0546921b13d206bce1b (diff) | |
| download | chromium_src-dfb9aadbcbefab6e593acdd525170b97ccbc1db1.zip chromium_src-dfb9aadbcbefab6e593acdd525170b97ccbc1db1.tar.gz chromium_src-dfb9aadbcbefab6e593acdd525170b97ccbc1db1.tar.bz2 | |
Fixed the bug ref for Linux assumptions.
BUG=
Review URL: https://codereview.chromium.org/1156643005
Cr-Commit-Position: refs/heads/master@{#332483}
| -rw-r--r-- | ui/base/touch/touch_device_linux.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/base/touch/touch_device_linux.cc b/ui/base/touch/touch_device_linux.cc index e0e7948..2e29c1d 100644 --- a/ui/base/touch/touch_device_linux.cc +++ b/ui/base/touch/touch_device_linux.cc @@ -24,7 +24,7 @@ int MaxTouchPoints() { return max_touch; } -// TODO(mustaq@chromium.org): Use mouse detection logic. crbug.com/440503 +// TODO(mustaq@chromium.org): Use mouse detection logic. crbug.com/495634 int GetAvailablePointerTypes() { // Assume a mouse is there int available_pointer_types = POINTER_TYPE_FINE; @@ -45,7 +45,7 @@ PointerType GetPrimaryPointerType() { return POINTER_TYPE_NONE; } -// TODO(mustaq@chromium.org): Use mouse detection logic. crbug.com/440503 +// TODO(mustaq@chromium.org): Use mouse detection logic. crbug.com/495634 int GetAvailableHoverTypes() { // Assume a mouse is there int available_hover_types = HOVER_TYPE_HOVER; |
