Chromium Code Reviews| Index: ui/events/touchscreen_device.cc |
| diff --git a/ui/display/types/chromeos/touchscreen_device.cc b/ui/events/touchscreen_device.cc |
| similarity index 77% |
| rename from ui/display/types/chromeos/touchscreen_device.cc |
| rename to ui/events/touchscreen_device.cc |
| index 714b8f9a35e62e80c9ecfe5b2999b87631e3b6ce..07844a152c788f362437ee13e3d21496e4efd78c 100644 |
| --- a/ui/display/types/chromeos/touchscreen_device.cc |
| +++ b/ui/events/touchscreen_device.cc |
| @@ -2,7 +2,7 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "ui/display/types/chromeos/touchscreen_device.h" |
| +#include "ui/events/touchscreen_device.h" |
| namespace ui { |
| @@ -12,8 +12,7 @@ const int TouchscreenDevice::kInvalidId = 0; |
| TouchscreenDevice::TouchscreenDevice(int id, |
| const gfx::Size& size, |
| bool is_internal) |
| - : id(id), |
| - size(size), |
| - is_internal(is_internal) {} |
| + : id(id), size(size), is_internal(is_internal) { |
|
Daniel Erat
2014/09/10 16:51:25
nit: in the past, the rule has been one-per-line i
dnicoara
2014/09/10 18:05:36
That's what clang format likes.
|
| +} |
| } // namespace ui |