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

Unified Diff: ui/display/chromeos/touchscreen_delegate_impl.h

Issue 508303002: Move touchscreen device caching to DeviceDataManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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/chromeos/touchscreen_delegate_impl.h
diff --git a/ui/display/chromeos/touchscreen_delegate_impl.h b/ui/display/chromeos/touchscreen_delegate_impl.h
index 32e0b174280a281755ad1c613d5e660c88288894..2ac2b1823d76870c6ee9e0c00ad95661a60ba63b 100644
--- a/ui/display/chromeos/touchscreen_delegate_impl.h
+++ b/ui/display/chromeos/touchscreen_delegate_impl.h
@@ -8,17 +8,13 @@
#include "base/memory/scoped_ptr.h"
#include "ui/display/chromeos/display_configurator.h"
#include "ui/display/display_export.h"
-#include "ui/display/types/chromeos/touchscreen_device.h"
namespace ui {
-class TouchscreenDeviceManager;
-
class DISPLAY_EXPORT TouchscreenDelegateImpl
: public DisplayConfigurator::TouchscreenDelegate {
public:
- explicit TouchscreenDelegateImpl(
- scoped_ptr<TouchscreenDeviceManager> touch_device_manager);
+ TouchscreenDelegateImpl();
virtual ~TouchscreenDelegateImpl();
// DisplayConfigurator::TouchscreenDelegate overrides:
@@ -26,8 +22,6 @@ class DISPLAY_EXPORT TouchscreenDelegateImpl
std::vector<DisplayConfigurator::DisplayState>* displays) OVERRIDE;
private:
- scoped_ptr<TouchscreenDeviceManager> touch_device_manager_;
-
DISALLOW_COPY_AND_ASSIGN(TouchscreenDelegateImpl);
};

Powered by Google App Engine
This is Rietveld 408576698