| Index: components/mus/gesture_manager.cc
|
| diff --git a/components/mus/gesture_manager.cc b/components/mus/gesture_manager.cc
|
| index f83cefb30a94ae9ac11d5048344dfe74f139d416..0b35c9a5bdf36e2e6125f50efad3e72c6b4a03da 100644
|
| --- a/components/mus/gesture_manager.cc
|
| +++ b/components/mus/gesture_manager.cc
|
| @@ -14,7 +14,7 @@
|
| #include "ui/gfx/geometry/point_f.h"
|
| #include "ui/mojo/events/input_events.mojom.h"
|
|
|
| -namespace view_manager {
|
| +namespace mus {
|
|
|
| using Views = std::vector<const ServerView*>;
|
|
|
| @@ -36,7 +36,7 @@ Views GetTouchTargets(const ServerView* deepest) {
|
| Views result;
|
| const ServerView* view = deepest;
|
| while (view) {
|
| - if (view->properties().count(mojo::kViewManagerKeyWantsTouchEvents)) {
|
| + if (view->properties().count(kViewManagerKeyWantsTouchEvents)) {
|
| if (!result.empty() &&
|
| result.back()->id().connection_id == view->id().connection_id) {
|
| result.pop_back();
|
| @@ -693,4 +693,4 @@ void GestureManager::ScheduleDelete(Pointer* pointer) {
|
| }
|
| }
|
|
|
| -} // namespace view_manager
|
| +} // namespace mus
|
|
|