Chromium Code Reviews| 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 UI_AURA_TOUCH_CTM_H_ | |
| 6 #define UI_AURA_TOUCH_CTM_H_ | |
| 7 | |
| 8 #include "ui/aura/aura_export.h" | |
| 9 | |
| 10 namespace aura { | |
| 11 | |
| 12 class AURA_EXPORT TouchCTM { | |
|
sadrul
2014/03/10 20:20:12
Document.
Yufeng Shen (Slow to review)
2014/03/13 20:55:46
Done.
| |
| 13 public: | |
| 14 TouchCTM(); | |
| 15 | |
| 16 float x_scale; | |
| 17 float x_offset; | |
| 18 float y_scale; | |
| 19 float y_offset; | |
| 20 }; | |
| 21 | |
| 22 } // namespace aura | |
| 23 | |
| 24 #endif // UI_AURA_TOUCH_CTM_H_ | |
| OLD | NEW |