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

Side by Side Diff: ui/display/chromeos/x11/touchscreen_delegate_x11.h

Issue 192483007: Move chromeos/display/* to ui/display/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix formatting 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMEOS_DISPLAY_TOUCHSCREEN_DELEGATE_X11_H_ 5 #ifndef UI_DISPLAY_CHROMEOS_X11_TOUCHSCREEN_DELEGATE_X11_H_
6 #define CHROMEOS_DISPLAY_TOUCHSCREEN_DELEGATE_X11_H_ 6 #define UI_DISPLAY_CHROMEOS_X11_TOUCHSCREEN_DELEGATE_X11_H_
7 7
8 #include "chromeos/display/output_configurator.h" 8 #include "ui/display/chromeos/output_configurator.h"
9 9
10 struct _XDisplay; 10 struct _XDisplay;
11 typedef struct _XDisplay Display; 11 typedef struct _XDisplay Display;
12 12
13 namespace chromeos { 13 namespace ui {
14 14
15 class TouchscreenDelegateX11 : public OutputConfigurator::TouchscreenDelegate { 15 class TouchscreenDelegateX11 : public OutputConfigurator::TouchscreenDelegate {
16 public: 16 public:
17 TouchscreenDelegateX11(); 17 TouchscreenDelegateX11();
18 virtual ~TouchscreenDelegateX11(); 18 virtual ~TouchscreenDelegateX11();
19 19
20 // OutputConfigurator::TouchscreenDelegate implementation: 20 // OutputConfigurator::TouchscreenDelegate implementation:
21 virtual void AssociateTouchscreens( 21 virtual void AssociateTouchscreens(
22 std::vector<OutputConfigurator::OutputSnapshot>* outputs) OVERRIDE; 22 std::vector<OutputConfigurator::OutputSnapshot>* outputs) OVERRIDE;
23 virtual void ConfigureCTM( 23 virtual void ConfigureCTM(
24 int touch_device_id, 24 int touch_device_id,
25 const OutputConfigurator::CoordinateTransformation& ctm) OVERRIDE; 25 const OutputConfigurator::CoordinateTransformation& ctm) OVERRIDE;
26 26
27 private: 27 private:
28 Display* display_; 28 Display* display_;
29 29
30 DISALLOW_COPY_AND_ASSIGN(TouchscreenDelegateX11); 30 DISALLOW_COPY_AND_ASSIGN(TouchscreenDelegateX11);
31 }; 31 };
32 32
33 } // namespace chromeos 33 } // namespace ui
34 34
35 #endif // CHROMEOS_DISPLAY_TOUCHSCREEN_DELEGATE_X11_H_ 35 #endif // UI_DISPLAY_CHROMEOS_X11_TOUCHSCREEN_DELEGATE_X11_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698