forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtouch_hud_projection.cc
36 lines (26 loc) · 1.02 KB
/
touch_hud_projection.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2013 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.
#include "ash/touch/touch_hud_projection.h"
#include "ash/root_window_controller.h"
#include "ash/touch/touch_hud_renderer.h"
namespace ash {
TouchHudProjection::TouchHudProjection(aura::Window* initial_root)
: TouchObserverHud(initial_root, "TouchHud"),
touch_hud_renderer_(new TouchHudRenderer(widget())) {}
TouchHudProjection::~TouchHudProjection() = default;
void TouchHudProjection::Clear() {
touch_hud_renderer_->Clear();
}
void TouchHudProjection::OnTouchEvent(ui::TouchEvent* event) {
touch_hud_renderer_->HandleTouchEvent(*event);
}
void TouchHudProjection::SetHudForRootWindowController(
RootWindowController* controller) {
controller->set_touch_hud_projection(this);
}
void TouchHudProjection::UnsetHudForRootWindowController(
RootWindowController* controller) {
controller->set_touch_hud_projection(nullptr);
}
} // namespace ash