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

Issue 2264743002: cheets: implement cros side of WallpaperManagerService. (Closed)

Created:
4 years, 4 months ago by Muyuan
Modified:
4 years, 3 months ago
CC:
chromium-reviews, elijahtaylor+arcwatch_chromium.org, yusukes+watch_chromium.org, viettrungluu+watch_chromium.org, hidehiko+watch_chromium.org, yzshen+watch_chromium.org, abarth-chromium, Aaron Boodman, lhchavez+watch_chromium.org, oshima+watch_chromium.org, darin (slow to review), ben+mojo_chromium.org, davemoore+watch_chromium.org, qsr+mojo_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

cheets: implement cros side of WallpaperManagerService. Rename ArcWallpaperHandler to ArcWallpaperService and implement it as an ArcService, which handles WallpaperManager API from Android. Test=Manually open PickMyWallpaper app and set wallpaper Test=run cts android.content.cts.ContextWrapperTest Bug=642465 Committed: https://crrev.com/533be7ef1063d285008913c9784d8d852055c8bd Cr-Commit-Position: refs/heads/master@{#417428}

Patch Set 1 #

Patch Set 2 : cheets: implement cros side of WallpaperManagerService. #

Patch Set 3 : cheets: implement cros side of WallpaperManagerService. #

Total comments: 31

Patch Set 4 : cheets: implement cros side of WallpaperManagerService. #

Total comments: 30

Patch Set 5 : cheets: implement cros side of WallpaperManagerService. #

Total comments: 10

Patch Set 6 : cheets: implement cros side of WallpaperManagerService. #

Total comments: 5

Patch Set 7 : cheets: implement cros side of WallpaperManagerService. #

Total comments: 2

Patch Set 8 : cheets: implement cros side of WallpaperManagerService. #

Patch Set 9 : cheets: implement cros side of WallpaperManagerService. #

Total comments: 5

Patch Set 10 : cheets: implement cros side of WallpaperManagerService. #

Total comments: 18

Patch Set 11 : Add a static instance to SetWallpaperDelegate and null check to ArcIntentHelper. #

Total comments: 12

Patch Set 12 : add DCHECK with static instance and fixed other minor issues. #

Total comments: 9

Patch Set 13 : moved SetWallpaperDelegate::instance_ to ArcIntentHelper; addressed minor edits. #

Total comments: 1

Patch Set 14 : Make instance_ in SetWallpaperDelegate private. #

Patch Set 15 : rebase #

Total comments: 6

Patch Set 16 : change instance getter / setter in SetWallpaperDelegate to snake_case. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+184 lines, -149 lines) Patch
M chrome/browser/chromeos/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/arc/arc_service_launcher.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +3 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/arc/arc_wallpaper_handler.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -42 lines 0 comments Download
M chrome/browser/chromeos/arc/arc_wallpaper_handler.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -89 lines 0 comments Download
A chrome/browser/chromeos/arc/arc_wallpaper_service.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +59 lines, -0 lines 0 comments Download
A + chrome/browser/chromeos/arc/arc_wallpaper_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +57 lines, -6 lines 0 comments Download
M components/arc/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -0 lines 0 comments Download
M components/arc/arc_bridge_host_impl.h View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M components/arc/arc_bridge_host_impl.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M components/arc/arc_bridge_service.h View 1 2 3 4 5 6 7 2 chunks +2 lines, -0 lines 0 comments Download
M components/arc/common/arc_bridge.mojom View 1 2 3 4 2 chunks +6 lines, -2 lines 0 comments Download
A components/arc/common/wallpaper.mojom View 1 2 3 4 5 6 7 8 9 1 chunk +25 lines, -0 lines 0 comments Download
M components/arc/intent_helper/arc_intent_helper_bridge.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +0 lines, -2 lines 0 comments Download
M components/arc/intent_helper/arc_intent_helper_bridge.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +10 lines, -3 lines 0 comments Download
M components/arc/set_wallpaper_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +11 lines, -1 line 0 comments Download

Messages

Total messages: 63 (15 generated)
Muyuan
4 years, 4 months ago (2016-08-19 21:04:07 UTC) #2
xiyuan
https://codereview.chromium.org/2264743002/diff/40001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc File chrome/browser/chromeos/arc/arc_wallpaper_handler.cc (right): https://codereview.chromium.org/2264743002/diff/40001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc#newcode77 chrome/browser/chromeos/arc/arc_wallpaper_handler.cc:77: static std::shared_ptr<ArcWallpaperHandler> instance(new ArcWallpaperHandler); We might want to use ...
4 years, 4 months ago (2016-08-19 23:04:07 UTC) #4
Luis Héctor Chávez
drive-by https://codereview.chromium.org/2264743002/diff/40001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc File chrome/browser/chromeos/arc/arc_wallpaper_handler.cc (right): https://codereview.chromium.org/2264743002/diff/40001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc#newcode77 chrome/browser/chromeos/arc/arc_wallpaper_handler.cc:77: static std::shared_ptr<ArcWallpaperHandler> instance(new ArcWallpaperHandler); DCHECK_CURRENTLY_ON(content::BrowserThread::UI); https://codereview.chromium.org/2264743002/diff/40001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc#newcode90 chrome/browser/chromeos/arc/arc_wallpaper_handler.cc:90: std::vector<uint8_t> ...
4 years, 4 months ago (2016-08-19 23:22:56 UTC) #6
hidehiko
Drive-by. https://codereview.chromium.org/2264743002/diff/40001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc File chrome/browser/chromeos/arc/arc_wallpaper_handler.cc (right): https://codereview.chromium.org/2264743002/diff/40001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc#newcode7 chrome/browser/chromeos/arc/arc_wallpaper_handler.cc:7: #include <cstdlib> Clarification: for what? https://codereview.chromium.org/2264743002/diff/40001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc#newcode77 chrome/browser/chromeos/arc/arc_wallpaper_handler.cc:77: static ...
4 years, 4 months ago (2016-08-22 02:30:11 UTC) #8
Muyuan
https://codereview.chromium.org/2264743002/diff/40001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc File chrome/browser/chromeos/arc/arc_wallpaper_handler.cc (right): https://codereview.chromium.org/2264743002/diff/40001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc#newcode77 chrome/browser/chromeos/arc/arc_wallpaper_handler.cc:77: static std::shared_ptr<ArcWallpaperHandler> instance(new ArcWallpaperHandler); On 2016/08/22 02:30:10, hidehiko wrote: ...
4 years, 4 months ago (2016-08-22 22:25:00 UTC) #9
xiyuan
https://codereview.chromium.org/2264743002/diff/60001/chrome/browser/chromeos/arc/arc_service_launcher.h File chrome/browser/chromeos/arc/arc_service_launcher.h (right): https://codereview.chromium.org/2264743002/diff/60001/chrome/browser/chromeos/arc/arc_service_launcher.h#newcode28 chrome/browser/chromeos/arc/arc_service_launcher.h:28: std::shared_ptr<ArcWallpaperHandler> arc_wallpaper_handler_; Do we really need a shared_ptr? Can ...
4 years, 4 months ago (2016-08-22 22:49:41 UTC) #10
Muyuan
https://codereview.chromium.org/2264743002/diff/60001/chrome/browser/chromeos/arc/arc_service_launcher.h File chrome/browser/chromeos/arc/arc_service_launcher.h (right): https://codereview.chromium.org/2264743002/diff/60001/chrome/browser/chromeos/arc/arc_service_launcher.h#newcode28 chrome/browser/chromeos/arc/arc_service_launcher.h:28: std::shared_ptr<ArcWallpaperHandler> arc_wallpaper_handler_; On 2016/08/22 22:49:41, xiyuan wrote: > Do ...
4 years, 4 months ago (2016-08-22 23:48:20 UTC) #11
xiyuan
https://codereview.chromium.org/2264743002/diff/60001/chrome/browser/chromeos/arc/arc_service_launcher.h File chrome/browser/chromeos/arc/arc_service_launcher.h (right): https://codereview.chromium.org/2264743002/diff/60001/chrome/browser/chromeos/arc/arc_service_launcher.h#newcode28 chrome/browser/chromeos/arc/arc_service_launcher.h:28: std::shared_ptr<ArcWallpaperHandler> arc_wallpaper_handler_; On 2016/08/22 23:48:19, muyuanli wrote: > On ...
4 years, 4 months ago (2016-08-23 00:41:04 UTC) #12
Shuhei Takahashi
https://codereview.chromium.org/2264743002/diff/60001/chrome/browser/chromeos/arc/arc_service_launcher.h File chrome/browser/chromeos/arc/arc_service_launcher.h (right): https://codereview.chromium.org/2264743002/diff/60001/chrome/browser/chromeos/arc/arc_service_launcher.h#newcode28 chrome/browser/chromeos/arc/arc_service_launcher.h:28: std::shared_ptr<ArcWallpaperHandler> arc_wallpaper_handler_; On 2016/08/23 00:41:04, xiyuan wrote: > On ...
4 years, 4 months ago (2016-08-23 09:34:22 UTC) #13
Muyuan
https://codereview.chromium.org/2264743002/diff/60001/chrome/browser/chromeos/arc/arc_service_launcher.h File chrome/browser/chromeos/arc/arc_service_launcher.h (right): https://codereview.chromium.org/2264743002/diff/60001/chrome/browser/chromeos/arc/arc_service_launcher.h#newcode28 chrome/browser/chromeos/arc/arc_service_launcher.h:28: std::shared_ptr<ArcWallpaperHandler> arc_wallpaper_handler_; On 2016/08/23 00:41:04, xiyuan wrote: > On ...
4 years, 4 months ago (2016-08-23 19:45:50 UTC) #14
xiyuan
https://codereview.chromium.org/2264743002/diff/80001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc File chrome/browser/chromeos/arc/arc_wallpaper_handler.cc (right): https://codereview.chromium.org/2264743002/diff/80001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc#newcode101 chrome/browser/chromeos/arc/arc_wallpaper_handler.cc:101: std::shared_ptr<std::vector<uint8_t>> buffer(new std::vector<uint8_t>()); I would avoid shared_ptr. Either use ...
4 years, 4 months ago (2016-08-23 20:43:48 UTC) #15
Muyuan
https://codereview.chromium.org/2264743002/diff/80001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc File chrome/browser/chromeos/arc/arc_wallpaper_handler.cc (right): https://codereview.chromium.org/2264743002/diff/80001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc#newcode101 chrome/browser/chromeos/arc/arc_wallpaper_handler.cc:101: std::shared_ptr<std::vector<uint8_t>> buffer(new std::vector<uint8_t>()); On 2016/08/23 20:43:47, xiyuan wrote: > ...
4 years, 4 months ago (2016-08-23 21:20:38 UTC) #16
xiyuan
lgtm
4 years, 4 months ago (2016-08-23 21:30:44 UTC) #17
Muyuan
4 years, 4 months ago (2016-08-23 22:32:10 UTC) #19
Shuhei Takahashi
lgtm
4 years, 4 months ago (2016-08-24 03:56:24 UTC) #20
hidehiko
https://codereview.chromium.org/2264743002/diff/100001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc File chrome/browser/chromeos/arc/arc_wallpaper_handler.cc (right): https://codereview.chromium.org/2264743002/diff/100001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc#newcode65 chrome/browser/chromeos/arc/arc_wallpaper_handler.cc:65: std::vector<uint8_t> EncodeImageJPEG(const gfx::Image image) { const ref to avoid ...
4 years, 4 months ago (2016-08-24 16:22:19 UTC) #21
xiyuan
https://codereview.chromium.org/2264743002/diff/100001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc File chrome/browser/chromeos/arc/arc_wallpaper_handler.cc (right): https://codereview.chromium.org/2264743002/diff/100001/chrome/browser/chromeos/arc/arc_wallpaper_handler.cc#newcode99 chrome/browser/chromeos/arc/arc_wallpaper_handler.cc:99: base::Bind(&EncodeImageJPEG, wallpaper), callback); On 2016/08/24 16:22:18, hidehiko wrote: > ...
4 years, 4 months ago (2016-08-24 17:16:29 UTC) #22
dcheng
https://codereview.chromium.org/2264743002/diff/100001/chrome/browser/chromeos/arc/arc_wallpaper_handler.h File chrome/browser/chromeos/arc/arc_wallpaper_handler.h (right): https://codereview.chromium.org/2264743002/diff/100001/chrome/browser/chromeos/arc/arc_wallpaper_handler.h#newcode32 chrome/browser/chromeos/arc/arc_wallpaper_handler.h:32: void GetWallpaper(const base::Callback<void(std::vector<uint8_t> image)>& This (and the previous function) ...
4 years, 3 months ago (2016-08-25 06:23:49 UTC) #23
Muyuan
https://codereview.chromium.org/2264743002/diff/100001/chrome/browser/chromeos/arc/arc_wallpaper_handler.h File chrome/browser/chromeos/arc/arc_wallpaper_handler.h (right): https://codereview.chromium.org/2264743002/diff/100001/chrome/browser/chromeos/arc/arc_wallpaper_handler.h#newcode32 chrome/browser/chromeos/arc/arc_wallpaper_handler.h:32: void GetWallpaper(const base::Callback<void(std::vector<uint8_t> image)>& On 2016/08/25 06:23:48, dcheng wrote: ...
4 years, 3 months ago (2016-08-25 20:33:16 UTC) #24
dcheng
lgtm https://codereview.chromium.org/2264743002/diff/120001/components/arc/wallpaper/arc_wallpaper_bridge.cc File components/arc/wallpaper/arc_wallpaper_bridge.cc (right): https://codereview.chromium.org/2264743002/diff/120001/components/arc/wallpaper/arc_wallpaper_bridge.cc#newcode60 components/arc/wallpaper/arc_wallpaper_bridge.cc:60: base::Bind(&HandleWallpaperResult, callback)); FWIW, mojo::Array and stuff are deprecated. ...
4 years, 3 months ago (2016-08-29 20:33:19 UTC) #25
Muyuan
https://codereview.chromium.org/2264743002/diff/120001/components/arc/wallpaper/arc_wallpaper_bridge.cc File components/arc/wallpaper/arc_wallpaper_bridge.cc (right): https://codereview.chromium.org/2264743002/diff/120001/components/arc/wallpaper/arc_wallpaper_bridge.cc#newcode60 components/arc/wallpaper/arc_wallpaper_bridge.cc:60: base::Bind(&HandleWallpaperResult, callback)); On 2016/08/29 20:33:19, dcheng wrote: > FWIW, ...
4 years, 3 months ago (2016-08-30 01:02:33 UTC) #26
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/2264743002/160001
4 years, 3 months ago (2016-08-30 21:41:32 UTC) #30
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/249657)
4 years, 3 months ago (2016-08-30 21:48:27 UTC) #32
Muyuan
4 years, 3 months ago (2016-08-30 21:50:33 UTC) #34
Luis Héctor Chávez
https://codereview.chromium.org/2264743002/diff/160001/components/arc/common/wallpaper.mojom File components/arc/common/wallpaper.mojom (right): https://codereview.chromium.org/2264743002/diff/160001/components/arc/common/wallpaper.mojom#newcode13 components/arc/common/wallpaper.mojom:13: [MinVersion=1] GetWallpaper@1() => (array<uint8> wallpaper); [MinVersion] is not needed ...
4 years, 3 months ago (2016-08-30 22:47:15 UTC) #35
Luis Héctor Chávez
https://codereview.chromium.org/2264743002/diff/160001/components/arc/set_wallpaper_delegate.h File components/arc/set_wallpaper_delegate.h (right): https://codereview.chromium.org/2264743002/diff/160001/components/arc/set_wallpaper_delegate.h#newcode16 components/arc/set_wallpaper_delegate.h:16: class SetWallpaperDelegate { On 2016/08/30 22:47:15, Luis Héctor Chávez ...
4 years, 3 months ago (2016-08-31 04:25:14 UTC) #36
hidehiko
FYI https://codereview.chromium.org/2264743002/diff/160001/components/arc/set_wallpaper_delegate.h File components/arc/set_wallpaper_delegate.h (right): https://codereview.chromium.org/2264743002/diff/160001/components/arc/set_wallpaper_delegate.h#newcode16 components/arc/set_wallpaper_delegate.h:16: class SetWallpaperDelegate { On 2016/08/31 04:25:14, Luis Héctor ...
4 years, 3 months ago (2016-08-31 04:59:53 UTC) #37
Luis Héctor Chávez
On 2016/08/31 04:59:53, hidehiko wrote: > FYI > > https://codereview.chromium.org/2264743002/diff/160001/components/arc/set_wallpaper_delegate.h > File components/arc/set_wallpaper_delegate.h (right): > ...
4 years, 3 months ago (2016-08-31 05:14:42 UTC) #38
Muyuan
https://codereview.chromium.org/2264743002/diff/160001/components/arc/set_wallpaper_delegate.h File components/arc/set_wallpaper_delegate.h (right): https://codereview.chromium.org/2264743002/diff/160001/components/arc/set_wallpaper_delegate.h#newcode16 components/arc/set_wallpaper_delegate.h:16: class SetWallpaperDelegate { On 2016/08/31 04:59:53, hidehiko wrote: > ...
4 years, 3 months ago (2016-09-01 18:49:08 UTC) #40
hidehiko
Looks much nicer. My biggest worry is use-after-free (please see my comment in arc_service_launcher.cc). Others ...
4 years, 3 months ago (2016-09-02 05:07:13 UTC) #41
Luis Héctor Chávez
https://codereview.chromium.org/2264743002/diff/180001/chrome/browser/chromeos/arc/arc_service_launcher.cc File chrome/browser/chromeos/arc/arc_service_launcher.cc (right): https://codereview.chromium.org/2264743002/diff/180001/chrome/browser/chromeos/arc/arc_service_launcher.cc#newcode49 chrome/browser/chromeos/arc/arc_service_launcher.cc:49: (ArcWallpaperService*)arc_wallpaper_handler_.get(), On 2016/09/02 05:07:13, hidehiko wrote: > This can ...
4 years, 3 months ago (2016-09-02 16:23:48 UTC) #42
Luis Héctor Chávez
Also, overall comment: whenever git cl upload asks you to provide a summary of the ...
4 years, 3 months ago (2016-09-02 16:26:23 UTC) #43
hidehiko
https://codereview.chromium.org/2264743002/diff/180001/components/arc/common/wallpaper.mojom File components/arc/common/wallpaper.mojom (right): https://codereview.chromium.org/2264743002/diff/180001/components/arc/common/wallpaper.mojom#newcode17 components/arc/common/wallpaper.mojom:17: SetWallpaper@1(array<uint8> png_data); On 2016/09/02 16:23:48, Luis Héctor Chávez wrote: ...
4 years, 3 months ago (2016-09-06 05:19:58 UTC) #44
Muyuan
https://codereview.chromium.org/2264743002/diff/180001/chrome/browser/chromeos/arc/arc_service_launcher.cc File chrome/browser/chromeos/arc/arc_service_launcher.cc (right): https://codereview.chromium.org/2264743002/diff/180001/chrome/browser/chromeos/arc/arc_service_launcher.cc#newcode34 chrome/browser/chromeos/arc/arc_service_launcher.cc:34: std::unique_ptr<ArcService> arc_wallpaper_handler_ = On 2016/09/02 05:07:13, hidehiko wrote: > ...
4 years, 3 months ago (2016-09-06 19:53:41 UTC) #45
Luis Héctor Chávez
https://codereview.chromium.org/2264743002/diff/180001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc File chrome/browser/chromeos/arc/arc_wallpaper_service.cc (right): https://codereview.chromium.org/2264743002/diff/180001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc#newcode102 chrome/browser/chromeos/arc/arc_wallpaper_service.cc:102: ImageDecoder::StartWithOptions(this, std::move(png_data.PassStorage()), On 2016/09/02 16:23:47, Luis Héctor Chávez wrote: ...
4 years, 3 months ago (2016-09-06 20:05:46 UTC) #46
Muyuan
https://codereview.chromium.org/2264743002/diff/180001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc File chrome/browser/chromeos/arc/arc_wallpaper_service.cc (right): https://codereview.chromium.org/2264743002/diff/180001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc#newcode102 chrome/browser/chromeos/arc/arc_wallpaper_service.cc:102: ImageDecoder::StartWithOptions(this, std::move(png_data.PassStorage()), On 2016/09/06 20:05:46, Luis Héctor Chávez wrote: ...
4 years, 3 months ago (2016-09-06 23:38:00 UTC) #47
hidehiko
Only minor comments, except L76 of https://codereview.chromium.org/2264743002/diff/220001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc. https://codereview.chromium.org/2264743002/diff/220001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc File chrome/browser/chromeos/arc/arc_wallpaper_service.cc (right): https://codereview.chromium.org/2264743002/diff/220001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc#newcode66 chrome/browser/chromeos/arc/arc_wallpaper_service.cc:66: std::vector<uint8_t> EncodeImagePNG(const ...
4 years, 3 months ago (2016-09-07 01:16:26 UTC) #48
Muyuan
https://codereview.chromium.org/2264743002/diff/220001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc File chrome/browser/chromeos/arc/arc_wallpaper_service.cc (right): https://codereview.chromium.org/2264743002/diff/220001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc#newcode66 chrome/browser/chromeos/arc/arc_wallpaper_service.cc:66: std::vector<uint8_t> EncodeImagePNG(const gfx::ImageSkia image) { On 2016/09/07 01:16:25, hidehiko ...
4 years, 3 months ago (2016-09-07 02:50:47 UTC) #49
hidehiko
LGTM with one more request. Defer to Luis. https://codereview.chromium.org/2264743002/diff/240001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc File chrome/browser/chromeos/arc/arc_wallpaper_service.cc (right): https://codereview.chromium.org/2264743002/diff/240001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc#newcode77 chrome/browser/chromeos/arc/arc_wallpaper_service.cc:77: DCHECK(!instance_); ...
4 years, 3 months ago (2016-09-07 03:26:49 UTC) #50
Muyuan
On 2016/09/07 03:26:49, hidehiko wrote: > LGTM with one more request. Defer to Luis. > ...
4 years, 3 months ago (2016-09-08 18:37:02 UTC) #51
Luis Héctor Chávez
lgtm with nits. Thanks for being patient with us :) https://codereview.chromium.org/2264743002/diff/280001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc File chrome/browser/chromeos/arc/arc_wallpaper_service.cc (right): https://codereview.chromium.org/2264743002/diff/280001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc#newcode77 ...
4 years, 3 months ago (2016-09-08 19:14:25 UTC) #52
Muyuan
https://codereview.chromium.org/2264743002/diff/280001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc File chrome/browser/chromeos/arc/arc_wallpaper_service.cc (right): https://codereview.chromium.org/2264743002/diff/280001/chrome/browser/chromeos/arc/arc_wallpaper_service.cc#newcode77 chrome/browser/chromeos/arc/arc_wallpaper_service.cc:77: DCHECK(!GetInstance()); On 2016/09/08 19:14:24, Luis Héctor Chávez wrote: > ...
4 years, 3 months ago (2016-09-08 21:05:25 UTC) #53
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/2264743002/300001
4 years, 3 months ago (2016-09-08 22:25:46 UTC) #56
commit-bot: I haz the power
Committed patchset #16 (id:300001)
4 years, 3 months ago (2016-09-08 22:59:16 UTC) #58
commit-bot: I haz the power
Patchset 16 (id:??) landed as https://crrev.com/533be7ef1063d285008913c9784d8d852055c8bd Cr-Commit-Position: refs/heads/master@{#417428}
4 years, 3 months ago (2016-09-08 23:02:40 UTC) #60
findit-for-me
FYI: Findit try jobs (rerunning failed compile or tests) identified this CL at revision 417428 ...
4 years, 3 months ago (2016-09-08 23:25:43 UTC) #61
Ken Russell (switch to Gerrit)
A revert of this CL (patchset #16 id:300001) has been created in https://codereview.chromium.org/2320323002/ by kbr@chromium.org. ...
4 years, 3 months ago (2016-09-08 23:27:04 UTC) #62
chromium-reviews
4 years, 3 months ago (2016-09-08 23:30:48 UTC) #63
Message was sent while issue was closed.
There was a move from ash/wallpaper/wallpaper_controller.h to
ash/common/wallpaper_controller.h when my CL is in CQ.

On Thu, Sep 8, 2016 at 4:27 PM <kbr@chromium.org> wrote:

> A revert of this CL (patchset #16 id:300001) has been created in
> https://codereview.chromium.org/2320323002/ by kbr@chromium.org.
>
> The reason for reverting is: Broke the build. Not sure how this made it
> past the
> CQ:
>
>
https://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%...
> .
>
> https://codereview.chromium.org/2264743002/
>

-- 
You received this message because you are subscribed to the Google Groups
"Chromium-reviews" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to chromium-reviews+unsubscribe@chromium.org.

Powered by Google App Engine
This is Rietveld 408576698