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

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: 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/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..c1efe14824b18f799e0d92e56412b235d8b2e9ba 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);
+ explicit TouchscreenDelegateImpl();
Daniel Erat 2014/09/10 16:51:24 nit: 'explicit' is unneeded now
dnicoara 2014/09/10 18:05:36 Done.
virtual ~TouchscreenDelegateImpl();
// DisplayConfigurator::TouchscreenDelegate overrides:
@@ -26,7 +22,6 @@ class DISPLAY_EXPORT TouchscreenDelegateImpl
std::vector<DisplayConfigurator::DisplayState>* displays) OVERRIDE;
private:
- scoped_ptr<TouchscreenDeviceManager> touch_device_manager_;
Daniel Erat 2014/09/10 16:51:24 nit: delete blank line
dnicoara 2014/09/10 18:05:36 Done.
DISALLOW_COPY_AND_ASSIGN(TouchscreenDelegateImpl);
};

Powered by Google App Engine
This is Rietveld 408576698