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

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

Issue 508303002: Move touchscreen device caching to DeviceDataManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove PlatformEventObserver Created 6 years, 3 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_manager.h
diff --git a/ui/display/types/chromeos/touchscreen_device_manager.h b/ui/display/types/chromeos/touchscreen_device_manager.h
deleted file mode 100644
index ef99c287940ff763ff945a566ba0c49c001e8b46..0000000000000000000000000000000000000000
--- a/ui/display/types/chromeos/touchscreen_device_manager.h
+++ /dev/null
@@ -1,27 +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_MANAGER_H_
-#define UI_DISPLAY_TYPES_CHROMEOS_TOUCHSCREEN_DEVICE_MANAGER_H_
-
-#include <vector>
-
-#include "ui/display/types/chromeos/touchscreen_device.h"
-
-namespace ui {
-
-// Implementations are responsible for querying and returning a list of avalable
-// touchscreen devices.
-class DISPLAY_TYPES_EXPORT TouchscreenDeviceManager {
- public:
- virtual ~TouchscreenDeviceManager() {}
-
- // Returns a list of available touchscreen devices. This call will query the
- // underlying system for an updated list of devices.
- virtual std::vector<TouchscreenDevice> GetDevices() = 0;
-};
-
-} // namespace ui
-
-#endif // UI_DISPLAY_TYPES_CHROMEOS_TOUCHSCREEN_DEVICE_MANAGER_H_

Powered by Google App Engine
This is Rietveld 408576698