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

Side by Side Diff: ash/touch/touch_ctm_controller.h

Issue 191223007: Move touch CTM from X into Chrome (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: move CTM update code into a separate file ash/touch/touch_ctm_controller.cc 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698