OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef UI_DISPLAY_CHROMEOS_OZONE_TOUCHSCREEN_DELEGATE_OZONE_H_ |
| 6 #define UI_DISPLAY_CHROMEOS_OZONE_TOUCHSCREEN_DELEGATE_OZONE_H_ |
| 7 |
| 8 #include "ui/display/chromeos/output_configurator.h" |
| 9 |
| 10 namespace ui { |
| 11 |
| 12 class TouchscreenDelegateOzone |
| 13 : public OutputConfigurator::TouchscreenDelegate { |
| 14 public: |
| 15 TouchscreenDelegateOzone(); |
| 16 virtual ~TouchscreenDelegateOzone(); |
| 17 |
| 18 // OutputConfigurator::TouchscreenDelegate overrides: |
| 19 virtual void AssociateTouchscreens( |
| 20 std::vector<OutputConfigurator::DisplayState>* outputs) OVERRIDE; |
| 21 virtual void ConfigureCTM( |
| 22 int touch_device_id, |
| 23 const OutputConfigurator::CoordinateTransformation& ctm) OVERRIDE; |
| 24 |
| 25 private: |
| 26 DISALLOW_COPY_AND_ASSIGN(TouchscreenDelegateOzone); |
| 27 }; |
| 28 |
| 29 } // namespace ui |
| 30 |
| 31 #endif // UI_DISPLAY_CHROMEOS_OZONE_TOUCHSCREEN_DELEGATE_OZONE_H_ |
OLD | NEW |