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

Issue 1413153007: arc-app-launcher: Minimal support for ARC app launcher. (Closed)

Created:
5 years, 1 month ago by khmel
Modified:
5 years ago
CC:
bengold
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

arc-app-launcher: Minimal support for ARC app launcher. This provides extension to app_list model that manages arc apps. It includes preference based service that interacts with arc bridge and supports an arc app life cycle; app list model builder for arc apps; arc list item. legacy ExtensionAppModelBuilder and new ArcAppModelBuilder are refactored in order to inherit common code. BUG=558209 TEST=Build and deploy android, chrome, chromium CLs. Apps appear in chromium app launcher. Once clicked, app is started in Android window. TEST=unit_tests with enable_arc=1 Debug/Release Committed: https://crrev.com/d7c5a3215244c5aa2165b6284bc8d19d5792af8c Cr-Commit-Position: refs/heads/master@{#363220}

Patch Set 1 #

Total comments: 19

Patch Set 2 : arc-app-launcher: Minimal support for ARC app launcher. #

Total comments: 3

Patch Set 3 : switch to new IPC #

Total comments: 118

Patch Set 4 : Process xiyuan #

Total comments: 3

Patch Set 5 : Discard accidental change in chrome/browser/prefs/browser_prefs.cc #

Total comments: 30

Patch Set 6 : Updated comments, calculate pos for items, rename arc_app_prefs, passing activities attrs from IPC … #

Patch Set 7 : revert wrongly update chrome/chrome_browser_ui.gypi #

Total comments: 8

Patch Set 8 : Rebase, add unit_tests #

Patch Set 9 : Fix WeakPtr issue. Change PostTask on PostTaskAndReplyWithResult #

Total comments: 22

Patch Set 10 : nit comments addressed #

Total comments: 26

Patch Set 11 : nit comments addressed. #

Patch Set 12 : nit comment addressed #

Total comments: 19

Patch Set 13 : nit: fix typo in header, rename test lib to test_support #

Total comments: 10

Patch Set 14 : Nits, moved arc_app to arc subfolder, refactored AppModelBuilders #

Patch Set 15 : Rebased #

Patch Set 16 : Split off #

Total comments: 1

Patch Set 17 : Reflect changes in FakeArcBridgeService #

Patch Set 18 : Rebased (change to use switch for arc), Reflected changes in base CLs #

Total comments: 2

Patch Set 19 : Rebased #

Total comments: 30

Patch Set 20 : Merged FakeArcBridgeService, comments addressed. #

Total comments: 29

Patch Set 21 : Removed inits from headers, nits addressed #

Patch Set 22 : Restored non static class memeber initialization #

Patch Set 23 : add missing method to fake_arc_bridge_service #

Patch Set 24 : Added missing links to BUILD.gn #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2267 lines, -120 lines) Patch
M chrome/browser/prefs/browser_prefs.cc 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 +5 lines, -0 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 23 1 chunk +5 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/app_list_model_builder.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 +75 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/app_list_model_builder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 1 chunk +64 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_syncable_service.h View 1 8 9 10 11 12 13 14 15 16 17 2 chunks +7 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_syncable_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 3 chunks +15 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_syncable_service_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +4 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_icon.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 21 1 chunk +111 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_icon.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 +284 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_item.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +57 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_item.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +120 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_list_prefs.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +148 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +376 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_list_prefs_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +36 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_list_prefs_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +45 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_model_builder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 21 1 chunk +51 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_model_builder.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 +84 lines, -0 lines 0 comments Download
A chrome/browser/ui/app_list/arc/arc_app_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +399 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/extension_app_model_builder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +11 lines, -38 lines 0 comments Download
M chrome/browser/ui/app_list/extension_app_model_builder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 15 chunks +37 lines, -82 lines 0 comments Download
M chrome/chrome_browser_ui.gypi 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 +18 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi 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 +10 lines, -0 lines 0 comments Download
M chrome/common/pref_names.h 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 +3 lines, -0 lines 0 comments Download
M chrome/common/pref_names.cc 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, -0 lines 0 comments Download
M chrome/test/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 23 1 chunk +5 lines, -0 lines 0 comments Download
M components/arc.gypi 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 +16 lines, -0 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 16 17 18 19 20 21 22 1 chunk +13 lines, -0 lines 0 comments Download
A components/arc/test/fake_arc_bridge_service.h 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 +119 lines, -0 lines 0 comments Download
A components/arc/test/fake_arc_bridge_service.cc 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 +145 lines, -0 lines 0 comments Download
A components/test/data/arc/icon_100p.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Binary file 0 comments Download
A components/test/data/arc/icon_125p.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Binary file 0 comments Download
A components/test/data/arc/icon_133p.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Binary file 0 comments Download
A components/test/data/arc/icon_140p.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Binary file 0 comments Download
A components/test/data/arc/icon_150p.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Binary file 0 comments Download
A components/test/data/arc/icon_180p.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Binary file 0 comments Download
A components/test/data/arc/icon_200p.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Binary file 0 comments Download
A components/test/data/arc/icon_250p.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Binary file 0 comments Download
A components/test/data/arc/icon_300p.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Binary file 0 comments Download

Messages

Total messages: 90 (27 generated)
khmel1
On 2015/10/27 11:23:32, khmel1 wrote: > mailto:khmel@google.com changed reviewers: > + mailto:elijahtaylor@chromium.org, mailto:lhchavez@chromium.org Arc bridge ...
5 years, 1 month ago (2015-10-27 11:27:54 UTC) #3
khmel1
This is alternative app launcher implementation based on app_list model. Note, that final ArcBridgeService is ...
5 years, 1 month ago (2015-10-28 00:17:54 UTC) #5
elijahtaylor1
On 2015/10/28 00:17:54, khmel1 wrote: > This is alternative app launcher implementation based on app_list ...
5 years, 1 month ago (2015-10-28 00:20:27 UTC) #6
elijahtaylor1
Overall I'm comfortable with the direction of this CL. We should probably get someone familiar ...
5 years, 1 month ago (2015-10-28 06:32:39 UTC) #7
bengold1
I would refrain from putting new assets in. We should just use the normal placeholder ...
5 years, 1 month ago (2015-10-28 19:44:22 UTC) #8
khmel1
Moved ui code under OS_CHROMEOS Processed comments. https://codereview.chromium.org/1413153007/diff/1/chrome/browser/prefs/browser_prefs.cc File chrome/browser/prefs/browser_prefs.cc (right): https://codereview.chromium.org/1413153007/diff/1/chrome/browser/prefs/browser_prefs.cc#newcode523 chrome/browser/prefs/browser_prefs.cc:523: ArcAppPrefs::RegisterProfilePrefs(registry); On ...
5 years, 1 month ago (2015-10-29 08:12:18 UTC) #9
elijahtaylor1
looks good except the png decoding I commented on again, but I will hold off ...
5 years, 1 month ago (2015-11-03 22:38:20 UTC) #10
khmel1
This update contains: 1. Migration to new IPC model. Please note, that there is pending ...
5 years, 1 month ago (2015-11-11 11:58:37 UTC) #12
xiyuan
https://codereview.chromium.org/1413153007/diff/40001/chrome/browser/ui/app_list/arc_app_icon.cc File chrome/browser/ui/app_list/arc_app_icon.cc (right): https://codereview.chromium.org/1413153007/diff/40001/chrome/browser/ui/app_list/arc_app_icon.cc#newcode25 chrome/browser/ui/app_list/arc_app_icon.cc:25: Source(ArcAppIcon* host, const gfx::Size& size_in_dip); |size_in_dip| seems not used? ...
5 years, 1 month ago (2015-11-11 22:15:51 UTC) #13
khmel1
Hi Xiyuan, Thank you for your review and detailed comments. This helped me to understand ...
5 years, 1 month ago (2015-11-12 08:05:31 UTC) #15
khmel1
PTAL. https://codereview.chromium.org/1413153007/diff/60001/chrome/browser/prefs/browser_prefs.cc File chrome/browser/prefs/browser_prefs.cc (right): https://codereview.chromium.org/1413153007/diff/60001/chrome/browser/prefs/browser_prefs.cc#newcode198 chrome/browser/prefs/browser_prefs.cc:198: #include "components/arc/arc_prefs.h" Sorry, this accidentally came after getting ...
5 years, 1 month ago (2015-11-12 08:18:14 UTC) #16
xiyuan
https://codereview.chromium.org/1413153007/diff/40001/chrome/browser/ui/app_list/arc_app_item.cc File chrome/browser/ui/app_list/arc_app_item.cc (right): https://codereview.chromium.org/1413153007/diff/40001/chrome/browser/ui/app_list/arc_app_item.cc#newcode103 chrome/browser/ui/app_list/arc_app_item.cc:103: void ArcAppItem::OnIconUpdated() { On 2015/11/12 08:05:30, khmel1 wrote: > ...
5 years, 1 month ago (2015-11-12 17:32:45 UTC) #17
Luis Héctor Chávez
https://codereview.chromium.org/1413153007/diff/80001/chrome/browser/ui/app_list/arc_app_icon.h File chrome/browser/ui/app_list/arc_app_icon.h (right): https://codereview.chromium.org/1413153007/diff/80001/chrome/browser/ui/app_list/arc_app_icon.h#newcode25 chrome/browser/ui/app_list/arc_app_icon.h:25: // A class that provides an ImageSkia for UI ...
5 years, 1 month ago (2015-11-12 20:49:16 UTC) #18
xiyuan
https://codereview.chromium.org/1413153007/diff/80001/chrome/browser/ui/app_list/arc_app_icon.h File chrome/browser/ui/app_list/arc_app_icon.h (right): https://codereview.chromium.org/1413153007/diff/80001/chrome/browser/ui/app_list/arc_app_icon.h#newcode83 chrome/browser/ui/app_list/arc_app_icon.h:83: Source* source_ = nullptr; // Owned by ImageSkia storage. ...
5 years, 1 month ago (2015-11-12 21:34:02 UTC) #19
elijahtaylor1
https://codereview.chromium.org/1413153007/diff/40001/chrome/browser/ui/app_list/arc_app_prefs.cc File chrome/browser/ui/app_list/arc_app_prefs.cc (right): https://codereview.chromium.org/1413153007/diff/40001/chrome/browser/ui/app_list/arc_app_prefs.cc#newcode63 chrome/browser/ui/app_list/arc_app_prefs.cc:63: user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); On 2015/11/12 17:32:44, xiyuan wrote: > On 2015/11/12 ...
5 years, 1 month ago (2015-11-13 01:56:00 UTC) #20
Matt Giuca
I just skimmed this CL --- it is quite huge. Initial thoughts: - This CL ...
5 years, 1 month ago (2015-11-13 07:39:54 UTC) #21
khmel1
On 2015/11/13 07:39:54, Matt Giuca wrote: > I just skimmed this CL --- it is ...
5 years, 1 month ago (2015-11-13 14:43:53 UTC) #22
khmel1
1. Updated comments and renamed arc_app_prefs to arc_app_list_prefs 2. Adding activities parameter (before activities was ...
5 years, 1 month ago (2015-11-13 15:00:56 UTC) #23
xiyuan
It seems that once an arc app is reported and the prefs would hold it ...
5 years, 1 month ago (2015-11-13 17:14:23 UTC) #24
khmel1
1. 1412863004 was finally submitted and now I have a chance to rebase everything properly. ...
5 years, 1 month ago (2015-11-17 13:18:02 UTC) #25
khmel1
On 2015/11/13 17:14:23, xiyuan wrote: > It seems that once an arc app is reported ...
5 years, 1 month ago (2015-11-17 13:20:01 UTC) #26
xiyuan
On 2015/11/17 13:18:02, khmel1 wrote: ... > 6. In ArcAppIcon::LoadForScaleFactor and ArcAppListPrefs::InstallIcon > changed weak_ptr_factory_.GetWeakPtr() ...
5 years, 1 month ago (2015-11-17 19:28:55 UTC) #27
khmel1
On 2015/11/17 19:28:55, xiyuan wrote: > On 2015/11/17 13:18:02, khmel1 wrote: > ... > > ...
5 years, 1 month ago (2015-11-18 01:15:54 UTC) #28
khmel1
Fixed WeakPtr issue. PTAL https://codereview.chromium.org/1413153007/diff/160001/chrome/browser/ui/app_list/arc_app_icon.cc File chrome/browser/ui/app_list/arc_app_icon.cc (right): https://codereview.chromium.org/1413153007/diff/160001/chrome/browser/ui/app_list/arc_app_icon.cc#newcode24 chrome/browser/ui/app_list/arc_app_icon.cc:24: struct ArcAppIcon::ReadResult { I need ...
5 years, 1 month ago (2015-11-18 01:16:16 UTC) #29
xiyuan
Awesome. Thank you for refactoring and adding test. Mostly nits now. https://codereview.chromium.org/1413153007/diff/160001/chrome/browser/chromeos/chrome_browser_main_chromeos.h File chrome/browser/chromeos/chrome_browser_main_chromeos.h (right): ...
5 years, 1 month ago (2015-11-18 03:42:17 UTC) #30
khmel1
Hi Xiyuan, thank you for your reviews. I updated CL, no functional changes, only nits ...
5 years, 1 month ago (2015-11-18 06:10:05 UTC) #31
xiyuan
LGTM Cool. Thank you for making all the changes. Think you still need a few ...
5 years, 1 month ago (2015-11-18 17:41:15 UTC) #32
Luis Héctor Chávez
https://codereview.chromium.org/1413153007/diff/180001/chrome/browser/ui/app_list/arc_app_unittest.cc File chrome/browser/ui/app_list/arc_app_unittest.cc (right): https://codereview.chromium.org/1413153007/diff/180001/chrome/browser/ui/app_list/arc_app_unittest.cc#newcode87 chrome/browser/ui/app_list/arc_app_unittest.cc:87: size_t GetArcItemCnt() const { nit: GetArcItemCount. I don't see ...
5 years, 1 month ago (2015-11-18 18:22:19 UTC) #33
Luis Héctor Chávez
https://codereview.chromium.org/1413153007/diff/180001/components/arc/arc_bridge_service_impl.cc File components/arc/arc_bridge_service_impl.cc (left): https://codereview.chromium.org/1413153007/diff/180001/components/arc/arc_bridge_service_impl.cc#oldcode181 components/arc/arc_bridge_service_impl.cc:181: bool ArcBridgeService::Connect(const IPC::ChannelHandle& handle, Also, is it possible to ...
5 years, 1 month ago (2015-11-18 18:33:06 UTC) #34
khmel1
Nit comments were addressed. Elijah, could you please take a look? You are OWNER of ...
5 years, 1 month ago (2015-11-19 02:56:13 UTC) #36
xiyuan
https://codereview.chromium.org/1413153007/diff/220001/components/arc/BUILD.gn File components/arc/BUILD.gn (right): https://codereview.chromium.org/1413153007/diff/220001/components/arc/BUILD.gn#newcode21 components/arc/BUILD.gn:21: static_library("fake_arc_bridge_service") { nit: I'd call this "test_support", just in ...
5 years, 1 month ago (2015-11-19 03:13:49 UTC) #37
elijahtaylor (use chromium)
LGTM, mostly nits a couple high level comments: 1) chromium commits should reference chromium bugs. ...
5 years, 1 month ago (2015-11-19 05:52:01 UTC) #39
Matt Giuca
On 2015/11/13 14:43:53, khmel1 wrote: > On 2015/11/13 07:39:54, Matt Giuca wrote: > > I ...
5 years, 1 month ago (2015-11-19 09:12:16 UTC) #40
Matt Giuca
https://codereview.chromium.org/1413153007/diff/220001/chrome/browser/ui/app_list/arc_app_model_builder.h File chrome/browser/ui/app_list/arc_app_model_builder.h (right): https://codereview.chromium.org/1413153007/diff/220001/chrome/browser/ui/app_list/arc_app_model_builder.h#newcode25 chrome/browser/ui/app_list/arc_app_model_builder.h:25: class ArcAppModelBuilder : public ArcAppListPrefs::Observer { I wanted to ...
5 years, 1 month ago (2015-11-19 09:12:36 UTC) #41
khmel1
On 2015/11/19 05:52:01, elijahtaylor (use chromium) wrote: > LGTM, mostly nits > > a couple ...
5 years, 1 month ago (2015-11-19 17:09:03 UTC) #43
khmel1
On 2015/11/19 09:12:16, Matt Giuca wrote: > On 2015/11/13 14:43:53, khmel1 wrote: > > On ...
5 years, 1 month ago (2015-11-19 17:10:42 UTC) #44
khmel1
1. Nits addressed. 2. Moved arc_app_ to arc/ subfolder. 3. Refactored ExtensionAppModelBuilder and ArcAppModelBuilder to ...
5 years, 1 month ago (2015-11-19 17:11:42 UTC) #45
elijahtaylor (use chromium)
https://codereview.chromium.org/1413153007/diff/220001/chrome/browser/ui/app_list/arc_app_list_prefs.cc File chrome/browser/ui/app_list/arc_app_list_prefs.cc (right): https://codereview.chromium.org/1413153007/diff/220001/chrome/browser/ui/app_list/arc_app_list_prefs.cc#newcode317 chrome/browser/ui/app_list/arc_app_list_prefs.cc:317: for (auto& app_id : old_ready_apps) { On 2015/11/19 17:11:41, ...
5 years, 1 month ago (2015-11-19 17:45:50 UTC) #46
khmel1
After a discussion decision to split off this CL was made. This CL includes app_list ...
5 years, 1 month ago (2015-11-24 09:41:04 UTC) #48
battre
chrome/browser/prefs/browser_prefs.cc LGTM
5 years, 1 month ago (2015-11-24 10:17:49 UTC) #51
lpique
https://codereview.chromium.org/1413153007/diff/340001/chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc File chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc (right): https://codereview.chromium.org/1413153007/diff/340001/chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc#newcode111 chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc:111: bridge_service->AddObserver(this); Note: You also need to call bridge_service->AddAppsObserver(this);
5 years ago (2015-12-01 23:34:55 UTC) #53
khmel1
https://codereview.chromium.org/1413153007/diff/340001/chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc File chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc (right): https://codereview.chromium.org/1413153007/diff/340001/chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc#newcode111 chrome/browser/ui/app_list/arc/arc_app_list_prefs.cc:111: bridge_service->AddObserver(this); On 2015/12/01 23:34:54, lpique wrote: > Note: You ...
5 years ago (2015-12-01 23:45:35 UTC) #54
jochen (gone - plz use gerrit)
please remove the reference to the buganizer entry https://codereview.chromium.org/1413153007/diff/360001/chrome/browser/ui/app_list/app_list_model_builder.cc File chrome/browser/ui/app_list/app_list_model_builder.cc (right): https://codereview.chromium.org/1413153007/diff/360001/chrome/browser/ui/app_list/app_list_model_builder.cc#newcode18 chrome/browser/ui/app_list/app_list_model_builder.cc:18: if ...
5 years ago (2015-12-03 10:25:40 UTC) #56
khmel1
Hi, Thanks Jochen for reviewing. I addressed your comments. All required CLs for this CL ...
5 years ago (2015-12-03 12:34:50 UTC) #60
jochen (gone - plz use gerrit)
https://codereview.chromium.org/1413153007/diff/360001/chrome/browser/ui/app_list/arc/arc_app_model_builder.h File chrome/browser/ui/app_list/arc/arc_app_model_builder.h (right): https://codereview.chromium.org/1413153007/diff/360001/chrome/browser/ui/app_list/arc/arc_app_model_builder.h#newcode46 chrome/browser/ui/app_list/arc/arc_app_model_builder.h:46: ArcAppListPrefs* prefs_ = nullptr; On 2015/12/03 at 12:34:49, khmel1 ...
5 years ago (2015-12-03 12:55:52 UTC) #61
hidehiko
LGTM for components/arc. Just a walk through for all files in CL, and commented some ...
5 years ago (2015-12-03 13:08:40 UTC) #62
jochen (gone - plz use gerrit)
https://codereview.chromium.org/1413153007/diff/380001/components/arc/test/fake_arc_bridge_service.h File components/arc/test/fake_arc_bridge_service.h (right): https://codereview.chromium.org/1413153007/diff/380001/components/arc/test/fake_arc_bridge_service.h#newcode41 components/arc/test/fake_arc_bridge_service.h:41: DISALLOW_COPY_AND_ASSIGN(Request); On 2015/12/03 at 13:08:39, hidehiko wrote: > (optional) ...
5 years ago (2015-12-03 13:12:46 UTC) #63
khmel1
Removed inits from headers and few more nits https://codereview.chromium.org/1413153007/diff/360001/chrome/browser/ui/app_list/arc/arc_app_model_builder.h File chrome/browser/ui/app_list/arc/arc_app_model_builder.h (right): https://codereview.chromium.org/1413153007/diff/360001/chrome/browser/ui/app_list/arc/arc_app_model_builder.h#newcode46 chrome/browser/ui/app_list/arc/arc_app_model_builder.h:46: ArcAppListPrefs* ...
5 years ago (2015-12-03 14:12:42 UTC) #64
xiyuan
https://codereview.chromium.org/1413153007/diff/360001/chrome/browser/ui/app_list/arc/arc_app_model_builder.h File chrome/browser/ui/app_list/arc/arc_app_model_builder.h (right): https://codereview.chromium.org/1413153007/diff/360001/chrome/browser/ui/app_list/arc/arc_app_model_builder.h#newcode46 chrome/browser/ui/app_list/arc/arc_app_model_builder.h:46: ArcAppListPrefs* prefs_ = nullptr; On 2015/12/03 14:12:41, khmel1 wrote: ...
5 years ago (2015-12-03 17:58:43 UTC) #65
khmel1
I have everything ready to try to submit this CL. If you don't have any ...
5 years ago (2015-12-04 01:34:12 UTC) #66
Matt Giuca
Hi, sorry I missed this review last week. Thanks for doing the refactoring I suggested. ...
5 years ago (2015-12-04 03:03:26 UTC) #67
khmel1
On 2015/12/04 03:03:26, Matt Giuca wrote: > Hi, sorry I missed this review last week. ...
5 years ago (2015-12-04 03:37:49 UTC) #69
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1413153007/420001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1413153007/420001
5 years ago (2015-12-04 06:16:49 UTC) #72
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/138051)
5 years ago (2015-12-04 06:44:18 UTC) #74
khmel1
ArcBridgeService was recently updated and I added missing function impl to FakeArcBridgeService + reabased.
5 years ago (2015-12-04 09:24:50 UTC) #75
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1413153007/440001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1413153007/440001
5 years ago (2015-12-04 09:25:53 UTC) #78
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/115441)
5 years ago (2015-12-04 10:03:33 UTC) #80
khmel1
I added missed links to BUILD.gn files, required for gn gen builds. Jochen, as I ...
5 years ago (2015-12-04 13:00:12 UTC) #81
jochen (gone - plz use gerrit)
build gn files lgtm
5 years ago (2015-12-04 14:09:49 UTC) #82
khmel1
On 2015/12/04 14:09:49, jochen wrote: > build gn files l/g/t/m Thanks for quick approval!
5 years ago (2015-12-04 14:12:03 UTC) #83
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1413153007/460001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1413153007/460001
5 years ago (2015-12-04 14:12:35 UTC) #86
commit-bot: I haz the power
Committed patchset #24 (id:460001)
5 years ago (2015-12-04 16:24:56 UTC) #88
commit-bot: I haz the power
5 years ago (2015-12-04 16:26:23 UTC) #90
Message was sent while issue was closed.
Patchset 24 (id:??) landed as
https://crrev.com/d7c5a3215244c5aa2165b6284bc8d19d5792af8c
Cr-Commit-Position: refs/heads/master@{#363220}

Powered by Google App Engine
This is Rietveld 408576698