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

Side by Side Diff: services/ui/ws/event_matcher.cc

Issue 2119963002: Move mus to //services/ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 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
« no previous file with comments | « services/ui/ws/event_matcher.h ('k') | services/ui/ws/event_matcher_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/mus/ws/event_matcher.h" 5 #include "services/ui/ws/event_matcher.h"
6 6
7 namespace mus { 7 namespace mus {
8 namespace ws { 8 namespace ws {
9 9
10 EventMatcher::EventMatcher(const mojom::EventMatcher& matcher) 10 EventMatcher::EventMatcher(const mojom::EventMatcher& matcher)
11 : fields_to_match_(NONE), 11 : fields_to_match_(NONE),
12 event_type_(ui::ET_UNKNOWN), 12 event_type_(ui::ET_UNKNOWN),
13 event_flags_(ui::EF_NONE), 13 event_flags_(ui::EF_NONE),
14 ignore_event_flags_(ui::EF_NONE), 14 ignore_event_flags_(ui::EF_NONE),
15 keyboard_code_(ui::VKEY_UNKNOWN), 15 keyboard_code_(ui::VKEY_UNKNOWN),
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 event_type_ == other.event_type_ && 104 event_type_ == other.event_type_ &&
105 event_flags_ == other.event_flags_ && 105 event_flags_ == other.event_flags_ &&
106 ignore_event_flags_ == other.ignore_event_flags_ && 106 ignore_event_flags_ == other.ignore_event_flags_ &&
107 keyboard_code_ == other.keyboard_code_ && 107 keyboard_code_ == other.keyboard_code_ &&
108 pointer_type_ == other.pointer_type_ && 108 pointer_type_ == other.pointer_type_ &&
109 pointer_region_ == other.pointer_region_; 109 pointer_region_ == other.pointer_region_;
110 } 110 }
111 111
112 } // namespace ws 112 } // namespace ws
113 } // namespace mus 113 } // namespace mus
OLDNEW
« no previous file with comments | « services/ui/ws/event_matcher.h ('k') | services/ui/ws/event_matcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698