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

Side by Side Diff: ui/aura/touch_ctm.h

Issue 191223007: Move touch CTM from X into Chrome (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: add file ui/aura/touch_ctm.h(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 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_
OLDNEW
« no previous file with comments | « ui/aura/aura.gyp ('k') | ui/aura/touch_ctm.cc » ('j') | ui/aura/window_tree_host_x11.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698