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

Unified Diff: components/mus/gesture_manager.cc

Issue 1340983002: Mandoline UI Process: Update namespaces and file names (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/mus/gesture_manager.h ('k') | components/mus/gesture_manager_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « components/mus/gesture_manager.h ('k') | components/mus/gesture_manager_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698