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

Side by Side Diff: ui/display/chromeos/ozone/touchscreen_delegate_ozone.h

Issue 214513006: Add Ozone stub implementations for NativeDisplayDelegate and TouchscreenDelegate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698