Chromium Code Reviews| Index: ash/touch/touch_hud_projection.h |
| diff --git a/ash/touch/touch_hud_projection.h b/ash/touch/touch_hud_projection.h |
| index ec0f8a24e57ee18a665427587f802e3c0078e58d..79de4618fed1c724da532f1d13a29a82d8e890d4 100644 |
| --- a/ash/touch/touch_hud_projection.h |
| +++ b/ash/touch/touch_hud_projection.h |
| @@ -1,4 +1,4 @@ |
| -// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| @@ -11,7 +11,7 @@ |
| #include "base/macros.h" |
| namespace ash { |
| -class TouchPointView; |
| +class TouchHudRenderer; |
| // A heads-up display to show active touch points on the screen. As a derivative |
| // of TouchObserverHUD, objects of this class manage their own lifetime. |
| @@ -33,7 +33,8 @@ class TouchHudProjection : public TouchObserverHUD { |
| void UnsetHudForRootWindowController( |
| RootWindowController* controller) override; |
| - std::map<int, TouchPointView*> points_; |
| + // TouchHudRenderer draws out the touch points |
|
James Cook
2016/07/12 17:22:07
nit: comments end in a period
riajiang
2016/07/12 20:08:26
Done.
|
| + std::unique_ptr<TouchHudRenderer> touch_hud_renderer_; |
| DISALLOW_COPY_AND_ASSIGN(TouchHudProjection); |
| }; |