Chromium Code Reviews| 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); |
| }; |