OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 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 ASH_TOUCH_TOUCH_CTM_CONTROLLER_HUD_H_ | |
6 #define ASH_TOUCH_TOUCH_CTM_CONTROLLER_HUD_H_ | |
7 | |
8 #include "ash/ash_export.h" | |
9 #include "ash/display/display_controller.h" | |
10 | |
11 namespace ash { | |
12 | |
13 class ASH_EXPORT TouchCTMController : public DisplayController::Observer { | |
14 public: | |
sadrul
2014/03/15 19:32:51
indent one space
Yufeng Shen (Slow to review)
2014/04/29 20:34:18
Done.
| |
15 TouchCTMController(); | |
16 virtual ~TouchCTMController(); | |
17 | |
18 // Updates the TouchCTM for touch device and pushes the new TouchCTM into | |
19 // device manager. | |
20 void UpdateTouchCTM(); | |
21 | |
22 // Overrides DisplayController::Observer: | |
oshima
2014/03/14 21:53:53
just
// DisplayController::Obserer:
is new style
Yufeng Shen (Slow to review)
2014/04/29 20:34:18
Done.
| |
23 virtual void OnDisplayConfigurationChanged() OVERRIDE; | |
24 | |
25 private: | |
26 | |
oshima
2014/03/14 21:53:53
nit: remove extra new line
Yufeng Shen (Slow to review)
2014/04/29 20:34:18
Done.
| |
27 DISALLOW_COPY_AND_ASSIGN(TouchCTMController); | |
28 }; | |
29 | |
30 } // namespace ash | |
31 | |
32 #endif // ASH_TOUCH_TOUCH_CTM_CONTROLLER_HUD_H_ | |
OLD | NEW |