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

Issue 2784663003: mus: Rename mojom::Cursor to mojom::CursorType. (Closed)

Created:
3 years, 8 months ago by Elliot Glaysher
Modified:
3 years, 8 months ago
Reviewers:
Tom Sepez, rjkroege, sky
CC:
chromium-reviews, rjkroege, mlamouri+watch-content_chromium.org, sadrul, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, tfarina, jam, yzshen+watch_chromium.org, abarth-chromium, Aaron Boodman, darin-cc_chromium.org, dcheng, kalyank, darin (slow to review)
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

mus: Rename mojom::Cursor to mojom::CursorType. Previously, the enum which specified which type of cursor was used mojom::Cursor. Rename that to mojom::CursorType so the next patch can actually specify a mojom::Cursor struct for all cursor related information. BUG=705037 R=sky,tsepez TBR=rjkroege Review-Url: https://codereview.chromium.org/2784663003 Cr-Commit-Position: refs/heads/master@{#460252} Committed: https://chromium.googlesource.com/chromium/src/+/fc921013f0a8420393406ba8208321fb4c60229f

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+203 lines, -197 lines) Patch
M ash/mus/move_event_handler.cc View 1 chunk +10 lines, -10 lines 0 comments Download
M content/renderer/mus/renderer_window_tree_client.h View 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/mus/renderer_window_tree_client.cc View 1 chunk +1 line, -1 line 0 comments Download
M mash/simple_wm/move_event_handler.cc View 1 chunk +10 lines, -10 lines 0 comments Download
M services/ui/public/interfaces/cursor.mojom View 1 chunk +1 line, -1 line 0 comments Download
M services/ui/public/interfaces/window_manager.mojom View 1 chunk +1 line, -1 line 0 comments Download
M services/ui/public/interfaces/window_tree.mojom View 2 chunks +2 lines, -2 lines 0 comments Download
M services/ui/ws/cursor_unittest.cc View 2 chunks +36 lines, -36 lines 0 comments Download
M services/ui/ws/display.h View 2 chunks +2 lines, -2 lines 0 comments Download
M services/ui/ws/display.cc View 2 chunks +3 lines, -2 lines 0 comments Download
M services/ui/ws/drag_controller.h View 3 chunks +3 lines, -3 lines 0 comments Download
M services/ui/ws/drag_controller.cc View 3 chunks +5 lines, -6 lines 0 comments Download
M services/ui/ws/drag_controller_unittest.cc View 10 chunks +15 lines, -15 lines 0 comments Download
M services/ui/ws/event_dispatcher.h View 1 chunk +1 line, -1 line 0 comments Download
M services/ui/ws/event_dispatcher.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M services/ui/ws/platform_display.h View 1 chunk +1 line, -1 line 0 comments Download
M services/ui/ws/platform_display_default.h View 1 chunk +1 line, -1 line 0 comments Download
M services/ui/ws/platform_display_default.cc View 1 chunk +1 line, -1 line 0 comments Download
M services/ui/ws/server_window.h View 3 chunks +6 lines, -6 lines 0 comments Download
M services/ui/ws/server_window.cc View 3 chunks +4 lines, -4 lines 0 comments Download
M services/ui/ws/server_window_observer.h View 1 chunk +2 lines, -2 lines 0 comments Download
M services/ui/ws/test_change_tracker.h View 1 chunk +2 lines, -1 line 0 comments Download
M services/ui/ws/test_change_tracker.cc View 1 chunk +1 line, -1 line 0 comments Download
M services/ui/ws/test_utils.h View 6 chunks +7 lines, -7 lines 0 comments Download
M services/ui/ws/test_utils.cc View 6 chunks +6 lines, -6 lines 0 comments Download
M services/ui/ws/window_manager_state.cc View 1 chunk +2 lines, -1 line 0 comments Download
M services/ui/ws/window_manager_state_unittest.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M services/ui/ws/window_server.h View 2 chunks +3 lines, -3 lines 0 comments Download
M services/ui/ws/window_server.cc View 3 chunks +6 lines, -4 lines 0 comments Download
M services/ui/ws/window_tree.h View 3 chunks +3 lines, -3 lines 0 comments Download
M services/ui/ws/window_tree.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M services/ui/ws/window_tree_client_unittest.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M services/ui/ws/window_tree_unittest.cc View 9 chunks +29 lines, -29 lines 0 comments Download
M ui/aura/mus/in_flight_change.h View 3 chunks +3 lines, -3 lines 0 comments Download
M ui/aura/mus/in_flight_change.cc View 1 chunk +1 line, -1 line 0 comments Download
M ui/aura/mus/window_manager_delegate.h View 1 chunk +1 line, -1 line 0 comments Download
M ui/aura/mus/window_mus.h View 1 chunk +1 line, -1 line 0 comments Download
M ui/aura/mus/window_port_mus.h View 3 chunks +4 lines, -4 lines 0 comments Download
M ui/aura/mus/window_port_mus.cc View 2 chunks +3 lines, -2 lines 0 comments Download
M ui/aura/mus/window_tree_client.h View 3 chunks +5 lines, -4 lines 0 comments Download
M ui/aura/mus/window_tree_client.cc View 3 chunks +4 lines, -4 lines 0 comments Download
M ui/aura/test/mus/test_window_tree.h View 1 chunk +1 line, -1 line 0 comments Download
M ui/aura/test/mus/test_window_tree.cc View 1 chunk +1 line, -1 line 0 comments Download
M ui/views/mus/desktop_window_tree_host_mus.cc View 2 chunks +2 lines, -2 lines 0 comments Download

Messages

Total messages: 25 (16 generated)
Elliot Glaysher
tsepez: mojom is literally just changing a name. sky: This is the first patch in ...
3 years, 8 months ago (2017-03-28 22:11:19 UTC) #10
Tom Sepez
RS LGTM
3 years, 8 months ago (2017-03-28 22:33:39 UTC) #11
sky
LGTM
3 years, 8 months ago (2017-03-28 22:36:30 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2784663003/1
3 years, 8 months ago (2017-03-28 22:58:39 UTC) #14
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/396916)
3 years, 8 months ago (2017-03-28 23:38:33 UTC) #16
Elliot Glaysher
rjkroege: TBR. This is just a name change of a type.
3 years, 8 months ago (2017-03-28 23:42:56 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2784663003/1
3 years, 8 months ago (2017-03-28 23:43:45 UTC) #21
commit-bot: I haz the power
Committed patchset #1 (id:1) as https://chromium.googlesource.com/chromium/src/+/fc921013f0a8420393406ba8208321fb4c60229f
3 years, 8 months ago (2017-03-29 00:56:37 UTC) #24
rjkroege
3 years, 8 months ago (2017-03-29 15:48:48 UTC) #25
Message was sent while issue was closed.
lgtm

Powered by Google App Engine
This is Rietveld 408576698