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

Issue 1984433002: Hook up Chrome's wallpaper picker for mash. (Closed)

Created:
4 years, 7 months ago by msw
Modified:
4 years, 6 months ago
Reviewers:
James Cook, yzshen1, sky, dcheng, bshe
CC:
chromium-reviews, davemoore+watch_chromium.org, kalyank, oshima+watch_chromium.org, sadrul
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Hook up Chrome's wallpaper picker for mash. Add wallpaper.mojom for ash_sysui<->chrome interaction. Implement WallpaperController in ash_sysui UserWallpaperDelegateMus. Implement minimal new ChromeWallpaperHelper in chrome. (lets chrome set mash wallpaper, mash trigger chrome wallpaper picker) Add SetWallpaper helper for WallpaperManager to work in mash too. Remove sysui_application.cc debug wallpaper initialization. Bail early on WindowStateManager::[Minimize|Restore]InactiveWindows. Workaround DesktopBackgroundController shell usage. TODO: Fix picker regression from codereview.chromium.org/2009853002 TODO: Fix wallpaper_manager.cc's other Shell::GetInstance uses. TODO: Fix DesktopBackgroundController display size checks in Mash. TODO: Implement window hide/restore for wallpaper picker. TODO: Implement missing UserWallpaperDelegateMus functionality. BUG=557405, 613657, 613707 TEST=Chrome OS wallpaper works with or without --mash flag; right click mash desktop -> "Set wallpaper..." works. R=jamescook@chromium.org,sky@chromium.org,dcheng@chromium.org Committed: https://crrev.com/4d780247a697f62d0e27a6eb5dfb309807f40881 Cr-Commit-Position: refs/heads/master@{#397739}

Patch Set 1 #

Patch Set 2 : Fix crash on picker show; git add mojom. #

Patch Set 3 : Git add files; sync and rebase. #

Patch Set 4 : Attempting to hook up WallpaperController::SetWallpaper; blocked by CapabilityFilter. #

Patch Set 5 : Rename mojom; add interface to ash_sysui. #

Patch Set 6 : Sync and rebase. #

Patch Set 7 : Trying to initialize the wallpaper on mash startup. #

Patch Set 8 : Works with --mash --login-manager #

Patch Set 9 : Cleanup; add TODOs; fix --mash path without --login-manager. #

Patch Set 10 : Cleanup #

Total comments: 3

Patch Set 11 : Add missing deps. #

Patch Set 12 : Fix gyp builds; address Sadrul's comment. #

Total comments: 26

Patch Set 13 : Address comments; test failures. #

Total comments: 4

Patch Set 14 : Avoid Display copy. #

Total comments: 7

Patch Set 15 : Address comments. #

Total comments: 4

Patch Set 16 : Sync and rebase. #

Patch Set 17 : Address comments #

Total comments: 12

Patch Set 18 : Address const auto& comment. #

Patch Set 19 : Sync and rebase. #

Patch Set 20 : Fix test crash; still failing; need to lock pixels? #

Patch Set 21 : Tests passing! #

Patch Set 22 : Sync and rebase with ash sysui move and bitmap struct traits cl. #

Patch Set 23 : Sync and rebase. #

Patch Set 24 : Add ash::mojom qualifiers; given new ash::sysui::mojom namespace. #

Total comments: 2

Patch Set 25 : Sync and rebase. #

Patch Set 26 : Add explicit WallpaperLayout enum conversion functions. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+353 lines, -97 lines) Patch
M ash/desktop_background/desktop_background_controller.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +15 lines, -9 lines 0 comments Download
M ash/sysui/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +5 lines, -0 lines 0 comments Download
M ash/sysui/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +1 line, -0 lines 0 comments Download
M ash/sysui/manifest.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +4 lines, -1 line 0 comments Download
A + ash/sysui/public/interfaces/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +2 lines, -3 lines 0 comments Download
A + ash/sysui/public/interfaces/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 0 chunks +-1 lines, --1 lines 0 comments Download
A ash/sysui/public/interfaces/wallpaper.mojom View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +20 lines, -0 lines 0 comments Download
M ash/sysui/shelf_delegate_mus.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 3 chunks +7 lines, -7 lines 0 comments Download
M ash/sysui/shelf_delegate_mus.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +3 lines, -2 lines 0 comments Download
M ash/sysui/shell_delegate_mus.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 3 chunks +2 lines, -3 lines 0 comments Download
M ash/sysui/sysui_application.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 3 chunks +9 lines, -3 lines 0 comments Download
M ash/sysui/sysui_application.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 8 chunks +33 lines, -37 lines 0 comments Download
A + ash/sysui/user_wallpaper_delegate_mus.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +17 lines, -11 lines 0 comments Download
A ash/sysui/user_wallpaper_delegate_mus.cc View 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 1 chunk +92 lines, -0 lines 0 comments Download
M chrome/app/mojo/chrome_manifest.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +4 lines, -1 line 0 comments Download
M chrome/browser/chromeos/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/chromeos/chrome_interface_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 5 chunks +10 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/chrome_interface_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 3 chunks +10 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/extensions/wallpaper_private_api.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +11 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc View 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 9 chunks +56 lines, -19 lines 0 comments Download
M chrome/browser/ui/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2 chunks +3 lines, -0 lines 0 comments Download
M chrome/browser/ui/ash/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +1 line, -0 lines 0 comments Download
A chrome/browser/ui/ash/chrome_wallpaper_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +28 lines, -0 lines 0 comments Download
A chrome/browser/ui/ash/chrome_wallpaper_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +20 lines, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 100 (44 generated)
msw
Hey James, please take a look; thanks! https://codereview.chromium.org/1984433002/diff/180001/ash/mus/user_wallpaper_delegate_mus.cc File ash/mus/user_wallpaper_delegate_mus.cc (right): https://codereview.chromium.org/1984433002/diff/180001/ash/mus/user_wallpaper_delegate_mus.cc#newcode40 ash/mus/user_wallpaper_delegate_mus.cc:40: // No ...
4 years, 7 months ago (2016-05-19 19:28:51 UTC) #5
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/180001
4 years, 7 months ago (2016-05-19 19:29:52 UTC) #7
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: cast_shell_linux on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_linux/builds/163544) chromeos_daisy_chromium_compile_only_ng on ...
4 years, 7 months ago (2016-05-19 19:35:24 UTC) #9
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/200001
4 years, 7 months ago (2016-05-19 19:45:02 UTC) #11
sadrul
drive-by https://codereview.chromium.org/1984433002/diff/180001/chrome/browser/chromeos/extensions/wallpaper_private_api.cc File chrome/browser/chromeos/extensions/wallpaper_private_api.cc (right): https://codereview.chromium.org/1984433002/diff/180001/chrome/browser/chromeos/extensions/wallpaper_private_api.cc#newcode172 chrome/browser/chromeos/extensions/wallpaper_private_api.cc:172: if (!ash::Shell::HasInstance() || ash::Shell::GetInstance()->in_mus()) { If there's a ...
4 years, 7 months ago (2016-05-19 19:45:22 UTC) #12
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_chromeos_compile_dbg_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_compile_dbg_ng/builds/203742) linux_chromium_chromeos_ozone_rel_ng on ...
4 years, 7 months ago (2016-05-19 20:03:14 UTC) #14
msw
https://codereview.chromium.org/1984433002/diff/180001/chrome/browser/chromeos/extensions/wallpaper_private_api.cc File chrome/browser/chromeos/extensions/wallpaper_private_api.cc (right): https://codereview.chromium.org/1984433002/diff/180001/chrome/browser/chromeos/extensions/wallpaper_private_api.cc#newcode172 chrome/browser/chromeos/extensions/wallpaper_private_api.cc:172: if (!ash::Shell::HasInstance() || ash::Shell::GetInstance()->in_mus()) { On 2016/05/19 19:45:22, sadrul ...
4 years, 7 months ago (2016-05-19 20:22:17 UTC) #16
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/240001
4 years, 7 months ago (2016-05-19 20:23:44 UTC) #18
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_ozone_rel_ng/builds/173326)
4 years, 7 months ago (2016-05-19 21:03:44 UTC) #20
James Cook
It's a bummer we have to ship big bitmaps back and forth, but I can't ...
4 years, 7 months ago (2016-05-19 22:30:00 UTC) #21
msw
Please take another look, thanks! +Scott for OWNERS. https://codereview.chromium.org/1984433002/diff/240001/ash/desktop_background/desktop_background_controller.cc File ash/desktop_background/desktop_background_controller.cc (right): https://codereview.chromium.org/1984433002/diff/240001/ash/desktop_background/desktop_background_controller.cc#newcode174 ash/desktop_background/desktop_background_controller.cc:174: // ...
4 years, 7 months ago (2016-05-20 19:53:05 UTC) #24
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/260001
4 years, 7 months ago (2016-05-20 19:53:33 UTC) #27
James Cook
LGTM with a question https://codereview.chromium.org/1984433002/diff/240001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc File chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc (right): https://codereview.chromium.org/1984433002/diff/240001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc#newcode198 chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc:198: ash::Shell::GetInstance()->desktop_background_controller()->SetWallpaperImage( On 2016/05/20 19:53:05, msw ...
4 years, 7 months ago (2016-05-20 20:47:13 UTC) #28
msw
https://codereview.chromium.org/1984433002/diff/240001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc File chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc (right): https://codereview.chromium.org/1984433002/diff/240001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc#newcode198 chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc:198: ash::Shell::GetInstance()->desktop_background_controller()->SetWallpaperImage( On 2016/05/20 20:47:13, James Cook wrote: > On ...
4 years, 7 months ago (2016-05-20 21:31:49 UTC) #29
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/280001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/280001
4 years, 7 months ago (2016-05-20 21:32:38 UTC) #31
sky
https://codereview.chromium.org/1984433002/diff/280001/mash/public/interfaces/wallpaper.mojom File mash/public/interfaces/wallpaper.mojom (right): https://codereview.chromium.org/1984433002/diff/280001/mash/public/interfaces/wallpaper.mojom#newcode5 mash/public/interfaces/wallpaper.mojom:5: module mash.mojom; The interfaces in here are intended for ...
4 years, 7 months ago (2016-05-20 22:32:19 UTC) #33
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_clang on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_clang/builds/25834)
4 years, 7 months ago (2016-05-20 23:15:40 UTC) #35
msw
Please take another look; thanks! https://codereview.chromium.org/1984433002/diff/280001/mash/public/interfaces/wallpaper.mojom File mash/public/interfaces/wallpaper.mojom (right): https://codereview.chromium.org/1984433002/diff/280001/mash/public/interfaces/wallpaper.mojom#newcode5 mash/public/interfaces/wallpaper.mojom:5: module mash.mojom; On 2016/05/20 ...
4 years, 7 months ago (2016-05-21 00:30:35 UTC) #37
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/320001
4 years, 7 months ago (2016-05-21 00:31:22 UTC) #39
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 7 months ago (2016-05-21 01:33:51 UTC) #41
sky
LGTM - be sure and get a security review of the mojom before landing though. ...
4 years, 7 months ago (2016-05-21 16:09:21 UTC) #42
msw
Daniel please security review ash/mus/public; thanks! https://codereview.chromium.org/1984433002/diff/320001/ash/mus/public/interfaces/wallpaper.mojom File ash/mus/public/interfaces/wallpaper.mojom (right): https://codereview.chromium.org/1984433002/diff/320001/ash/mus/public/interfaces/wallpaper.mojom#newcode1 ash/mus/public/interfaces/wallpaper.mojom:1: // Copyright 2016 ...
4 years, 6 months ago (2016-05-24 18:45:42 UTC) #45
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/360001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/360001
4 years, 6 months ago (2016-05-24 18:46:49 UTC) #47
dcheng
https://codereview.chromium.org/1984433002/diff/360001/ash/desktop_background/desktop_background_controller.cc File ash/desktop_background/desktop_background_controller.cc (right): https://codereview.chromium.org/1984433002/diff/360001/ash/desktop_background/desktop_background_controller.cc#newcode172 ash/desktop_background/desktop_background_controller.cc:172: for (auto& display : display::Screen::GetScreen()->GetAllDisplays()) { Nit: const auto&? ...
4 years, 6 months ago (2016-05-24 18:53:37 UTC) #48
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 6 months ago (2016-05-24 20:11:07 UTC) #50
yzshen1
https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc File chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc (right): https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc#newcode194 chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc:194: static_cast<ash::mus::mojom::WallpaperLayout>(layout)); On 2016/05/24 18:53:37, dcheng wrote: > Similarly, do ...
4 years, 6 months ago (2016-05-24 22:04:42 UTC) #52
msw
Please let me know how you'd like me to proceed, thanks! https://codereview.chromium.org/1984433002/diff/360001/ash/desktop_background/desktop_background_controller.cc File ash/desktop_background/desktop_background_controller.cc (right): ...
4 years, 6 months ago (2016-05-24 22:06:37 UTC) #53
dcheng
https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc File chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc (right): https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc#newcode193 chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc:193: skia::mojom::Bitmap::From(*image.bitmap()), On 2016/05/24 at 22:06:37, msw wrote: > On ...
4 years, 6 months ago (2016-05-25 17:31:26 UTC) #54
msw
https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc File chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc (right): https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc#newcode193 chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc:193: skia::mojom::Bitmap::From(*image.bitmap()), On 2016/05/25 17:31:26, dcheng wrote: > On 2016/05/24 ...
4 years, 6 months ago (2016-05-25 18:16:41 UTC) #55
dcheng
https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc File chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc (right): https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc#newcode193 chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc:193: skia::mojom::Bitmap::From(*image.bitmap()), On 2016/05/25 at 18:16:41, msw wrote: > On ...
4 years, 6 months ago (2016-05-25 19:56:40 UTC) #56
yzshen1
On 2016/05/25 19:56:40, dcheng wrote: > https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc > File chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc (right): > > https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc#newcode193 > ...
4 years, 6 months ago (2016-05-25 20:13:13 UTC) #57
dcheng
On 2016/05/25 at 20:13:13, yzshen wrote: > On 2016/05/25 19:56:40, dcheng wrote: > > https://codereview.chromium.org/1984433002/diff/360001/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.cc ...
4 years, 6 months ago (2016-05-25 20:21:14 UTC) #58
yzshen1
On 2016/05/25 20:21:14, dcheng wrote: > On 2016/05/25 at 20:13:13, yzshen wrote: > > On ...
4 years, 6 months ago (2016-05-25 20:26:48 UTC) #59
sky
Any chance Mike could land this and we straighten out the traits issue separately? AFAIK ...
4 years, 6 months ago (2016-05-25 23:52:53 UTC) #60
yzshen1
On 2016/05/25 23:52:53, sky wrote: > Any chance Mike could land this and we straighten ...
4 years, 6 months ago (2016-05-25 23:58:57 UTC) #61
dcheng
It's just going to make things even harder down the road though. I'd rather we ...
4 years, 6 months ago (2016-05-26 01:07:56 UTC) #62
msw
I'm working on a CL... slowly: https://codereview.chromium.org/2014013002 I'll have to spend an extra day or ...
4 years, 6 months ago (2016-05-26 04:55:43 UTC) #63
dcheng
On 2016/05/26 at 04:55:43, msw wrote: > I'm working on a CL... slowly: https://codereview.chromium.org/2014013002 > ...
4 years, 6 months ago (2016-05-26 06:46:07 UTC) #64
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/560001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/560001
4 years, 6 months ago (2016-06-01 20:21:42 UTC) #70
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_compile_dbg_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg_ng/builds/212511) mac_chromium_gn_rel on ...
4 years, 6 months ago (2016-06-01 20:25:13 UTC) #72
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/580001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/580001
4 years, 6 months ago (2016-06-02 21:30:39 UTC) #76
msw
Hey Daniel, please take another look. This CL now uses the SkBitmap struct traits I ...
4 years, 6 months ago (2016-06-02 21:31:17 UTC) #77
dcheng
Enum integration seems to be a repeated pain point... https://codereview.chromium.org/1984433002/diff/580001/ash/sysui/user_wallpaper_delegate_mus.cc File ash/sysui/user_wallpaper_delegate_mus.cc (right): https://codereview.chromium.org/1984433002/diff/580001/ash/sysui/user_wallpaper_delegate_mus.cc#newcode68 ash/sysui/user_wallpaper_delegate_mus.cc:68: ...
4 years, 6 months ago (2016-06-02 21:36:51 UTC) #78
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_arm64_dbg_recipe on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_arm64_dbg_recipe/builds/75768) android_clang_dbg_recipe on ...
4 years, 6 months ago (2016-06-02 21:39:17 UTC) #80
msw
https://codereview.chromium.org/1984433002/diff/580001/ash/sysui/user_wallpaper_delegate_mus.cc File ash/sysui/user_wallpaper_delegate_mus.cc (right): https://codereview.chromium.org/1984433002/diff/580001/ash/sysui/user_wallpaper_delegate_mus.cc#newcode68 ash/sysui/user_wallpaper_delegate_mus.cc:68: image, static_cast<wallpaper::WallpaperLayout>(layout)); On 2016/06/02 21:36:51, dcheng wrote: > =/ ...
4 years, 6 months ago (2016-06-02 22:19:16 UTC) #82
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/620001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/620001
4 years, 6 months ago (2016-06-02 22:20:24 UTC) #83
dcheng
On 2016/06/02 at 22:19:16, msw wrote: > https://codereview.chromium.org/1984433002/diff/580001/ash/sysui/user_wallpaper_delegate_mus.cc > File ash/sysui/user_wallpaper_delegate_mus.cc (right): > > https://codereview.chromium.org/1984433002/diff/580001/ash/sysui/user_wallpaper_delegate_mus.cc#newcode68 ...
4 years, 6 months ago (2016-06-02 22:27:34 UTC) #84
dcheng
(Also, LGTM)
4 years, 6 months ago (2016-06-02 22:27:44 UTC) #85
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 6 months ago (2016-06-03 01:03:49 UTC) #87
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/620001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1984433002/620001
4 years, 6 months ago (2016-06-03 02:23:20 UTC) #90
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/194478)
4 years, 6 months ago (2016-06-03 02:34:26 UTC) #92
yzshen1
On 2016/06/02 22:27:34, dcheng wrote: > On 2016/06/02 at 22:19:16, msw wrote: > > > ...
4 years, 6 months ago (2016-06-03 15:22:09 UTC) #93
bshe
On 2016/06/03 15:22:09, yzshen1 wrote: > On 2016/06/02 22:27:34, dcheng wrote: > > On 2016/06/02 ...
4 years, 6 months ago (2016-06-03 17:10:06 UTC) #94
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1984433002/620001
4 years, 6 months ago (2016-06-03 17:13:22 UTC) #96
commit-bot: I haz the power
Committed patchset #26 (id:620001)
4 years, 6 months ago (2016-06-03 17:19:51 UTC) #98
commit-bot: I haz the power
4 years, 6 months ago (2016-06-03 17:21:48 UTC) #100
Message was sent while issue was closed.
Patchset 26 (id:??) landed as
https://crrev.com/4d780247a697f62d0e27a6eb5dfb309807f40881
Cr-Commit-Position: refs/heads/master@{#397739}

Powered by Google App Engine
This is Rietveld 408576698