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

Unified Diff: ui/display/types/chromeos/touchscreen_device.h

Issue 336863002: Moving input device hotplug event processing outside of ui/display (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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: ui/display/types/chromeos/touchscreen_device.h
diff --git a/ui/display/types/chromeos/touchscreen_device.h b/ui/display/types/chromeos/touchscreen_device.h
deleted file mode 100644
index ecc64527183886300a2f99c7e93a9e5b929da6fb..0000000000000000000000000000000000000000
--- a/ui/display/types/chromeos/touchscreen_device.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef UI_DISPLAY_TYPES_CHROMEOS_TOUCHSCREEN_DEVICE_H_
-#define UI_DISPLAY_TYPES_CHROMEOS_TOUCHSCREEN_DEVICE_H_
-
-#include "ui/display/types/display_types_export.h"
-#include "ui/gfx/geometry/size.h"
-
-namespace ui {
-
-// Represents a Touchscreen device state.
-struct DISPLAY_TYPES_EXPORT TouchscreenDevice {
- static const int kInvalidId;
-
- TouchscreenDevice(int id, const gfx::Size& size);
-
- // ID of the touch screen. This ID must uniquely identify the touch screen.
- int id;
-
- // Size of the touch screen area.
- gfx::Size size;
-};
-
-} // namespace ui
-
-#endif // UI_DISPLAY_TYPES_CHROMEOS_TOUCHSCREEN_DEVICE_H_

Powered by Google App Engine
This is Rietveld 408576698