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); |
}; |