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

Issue 1310223002: webapps: initial addition of splash screen icon downloading (Closed)

Created:
5 years, 4 months ago by Lalit Maganti
Modified:
5 years, 3 months ago
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@webapps-database-exp
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

webapps: initial addition of splash screen icon downloading This CL adds the downloading of the splash screen icon in both the AppBanner and AddToHomescreenDialog code paths. On both the AddToHomescreenDialog and AppBanner paths, the splash screen icon is not compulsory. The task to download the icon is sent after the user accepts the addition to homescreen as a fire and forget task with the data storage updated if the icon is downloaded at some point. This makes the icon available for consumption by the splash screen. This is a part of a group of CLs: (1) https://codereview.chromium.org/1286973003 (2) https://codereview.chromium.org/1310223002 (this) (3) https://codereview.chromium.org/1239923002 BUG=508627 Committed: https://crrev.com/d93c2ed0a3bf8b3d4662e1e4f2961070d8d7eb1a Cr-Commit-Position: refs/heads/master@{#347419}

Patch Set 1 #

Patch Set 2 : Add remainder of download code #

Patch Set 3 : Add call to webapp storage #

Total comments: 20

Patch Set 4 : Fix review comments and update code as discussed #

Total comments: 32

Patch Set 5 : Address review comments - not fully addressed though #

Patch Set 6 : Fix remaining comments #

Patch Set 7 : Fix small issues #

Total comments: 29

Patch Set 8 : Fix review comments #

Patch Set 9 : Fix a bunch more indentation errors #

Patch Set 10 : Rebased #

Patch Set 11 : Add assert for callback value #

Patch Set 12 : Rebase #

Total comments: 8

Patch Set 13 : Fix nit with previous patch #

Patch Set 14 : Add tests and address comment #

Total comments: 27

Patch Set 15 : Address review comments #

Patch Set 16 : Fix compile #

Patch Set 17 : Rebase on registry patch and add register call #

Total comments: 14

Patch Set 18 : Address review comments #

Patch Set 19 : Address review nit #

Patch Set 20 : Fix compile #

Patch Set 21 : Rebase to fix patch apply #

Patch Set 22 : Fix test compile #

Total comments: 14

Patch Set 23 : Address review comments #

Total comments: 10

Patch Set 24 : Address review comments #

Patch Set 25 : Rebase to fix merge conflicts #

Patch Set 26 : Fix compile #

Unified diffs Side-by-side diffs Delta from patch set Stats (+498 lines, -98 lines) Patch
M chrome/android/java/res/values/dimens.xml 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 2 chunks +4 lines, -1 line 0 comments Download
M chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 7 chunks +60 lines, -17 lines 0 comments Download
M chrome/android/java/src/org/chromium/chrome/browser/banners/AppBannerManager.java View 1 2 3 4 5 6 7 8 9 3 chunks +4 lines, -7 lines 0 comments Download
M chrome/android/java/src/org/chromium/chrome/browser/infobar/AppBannerInfoBarAndroid.java 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, -1 line 0 comments Download
M chrome/android/java/src/org/chromium/chrome/browser/webapps/AddToHomescreenDialogHelper.java View 1 2 3 4 5 6 7 2 chunks +6 lines, -2 lines 0 comments Download
M chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappDataStorage.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 5 chunks +29 lines, -5 lines 0 comments Download
M chrome/android/javatests/src/org/chromium/chrome/browser/banners/AppBannerManagerTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 4 chunks +113 lines, -0 lines 0 comments Download
M chrome/android/javatests/src/org/chromium/chrome/browser/webapps/AddToHomescreenDialogHelperTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 4 chunks +52 lines, -0 lines 0 comments Download
M chrome/browser/android/banners/app_banner_data_fetcher_android.h View 1 2 3 4 5 6 7 3 chunks +7 lines, -1 line 0 comments Download
M chrome/browser/android/banners/app_banner_data_fetcher_android.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 +23 lines, -3 lines 0 comments Download
M chrome/browser/android/banners/app_banner_infobar_delegate_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +5 lines, -0 lines 0 comments Download
M chrome/browser/android/banners/app_banner_infobar_delegate_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +8 lines, -1 line 0 comments Download
M chrome/browser/android/banners/app_banner_manager_android.h View 1 2 3 4 5 6 7 3 chunks +8 lines, -2 lines 0 comments Download
M chrome/browser/android/banners/app_banner_manager_android.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 4 chunks +17 lines, -9 lines 0 comments Download
M chrome/browser/android/shortcut_helper.h View 1 2 3 4 5 6 7 18 2 chunks +19 lines, -1 line 0 comments Download
M chrome/browser/android/shortcut_helper.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 4 chunks +40 lines, -4 lines 0 comments Download
M chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +9 lines, -2 lines 0 comments Download
M chrome/browser/android/webapps/add_to_homescreen_data_fetcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +26 lines, -10 lines 0 comments Download
M chrome/browser/android/webapps/add_to_homescreen_dialog_helper.h View 1 2 3 4 5 6 7 1 chunk +3 lines, -1 line 0 comments Download
M chrome/browser/android/webapps/add_to_homescreen_dialog_helper.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 5 chunks +22 lines, -8 lines 0 comments Download
M chrome/browser/banners/app_banner_data_fetcher.h View 1 2 3 4 5 4 chunks +6 lines, -6 lines 0 comments Download
M chrome/browser/banners/app_banner_data_fetcher.cc View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M chrome/browser/banners/app_banner_manager.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 24 25 3 chunks +6 lines, -5 lines 0 comments Download
M chrome/browser/banners/app_banner_manager.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -5 lines 0 comments Download
A chrome/test/data/banners/image-512px.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 Binary file 0 comments Download
M chrome/test/data/banners/manifest.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +5 lines, -0 lines 0 comments Download
A chrome/test/data/webapps/image-512px.png View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 Binary file 0 comments Download
A chrome/test/data/webapps/manifest.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +14 lines, -0 lines 0 comments Download
A + chrome/test/data/webapps/manifest_test_page.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +2 lines, -3 lines 0 comments Download

Messages

Total messages: 62 (11 generated)
Lalit Maganti
Mounir and Dan: This is still a WIP as there are still personal TODOs and ...
5 years, 4 months ago (2015-08-24 14:37:00 UTC) #2
Lalit Maganti
Mounir and Dan: This is still a WIP as there are still personal TODOs and ...
5 years, 4 months ago (2015-08-24 14:37:02 UTC) #3
mlamouri (slow - plz ping)
The gist of the change sgtm. I left a few comments, see below. https://codereview.chromium.org/1310223002/diff/40001/chrome/browser/android/banners/app_banner_data_fetcher_android.cc File ...
5 years, 4 months ago (2015-08-24 16:43:55 UTC) #4
gone
Can you start fleshing out CL descriptions before you send it out (even for initial ...
5 years, 4 months ago (2015-08-24 17:15:55 UTC) #5
Lalit Maganti
On 2015/08/24 17:15:55, dfalcantara wrote: > Can you start fleshing out CL descriptions before you ...
5 years, 4 months ago (2015-08-24 17:19:54 UTC) #6
gone
Guessing this CL will need to be tweaked given the conversation earlier? https://chromiumcodereview.appspot.com/1310223002/diff/40001/chrome/android/java/res/values/dimens.xml File chrome/android/java/res/values/dimens.xml ...
5 years, 4 months ago (2015-08-24 18:43:13 UTC) #7
Lalit Maganti
https://codereview.chromium.org/1310223002/diff/40001/chrome/android/java/res/values/dimens.xml File chrome/android/java/res/values/dimens.xml (right): https://codereview.chromium.org/1310223002/diff/40001/chrome/android/java/res/values/dimens.xml#newcode199 chrome/android/java/res/values/dimens.xml:199: <!-- WebApp dimensions --> On 2015/08/24 18:43:13, dfalcantara wrote: ...
5 years, 4 months ago (2015-08-25 11:38:44 UTC) #8
Lalit Maganti
On 2015/08/25 11:38:44, Lalit Maganti wrote: > https://codereview.chromium.org/1310223002/diff/40001/chrome/android/java/res/values/dimens.xml > File chrome/android/java/res/values/dimens.xml (right): > > https://codereview.chromium.org/1310223002/diff/40001/chrome/android/java/res/values/dimens.xml#newcode199 ...
5 years, 4 months ago (2015-08-25 11:42:19 UTC) #9
gone
On 2015/08/25 11:42:19, Lalit Maganti wrote: > On 2015/08/25 11:38:44, Lalit Maganti wrote: > > ...
5 years, 4 months ago (2015-08-26 01:32:03 UTC) #10
gone
https://chromiumcodereview.appspot.com/1310223002/diff/60001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java File chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java (right): https://chromiumcodereview.appspot.com/1310223002/diff/60001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java#newcode169 chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java:169: /** TODO what? https://chromiumcodereview.appspot.com/1310223002/diff/60001/chrome/android/java/src/org/chromium/chrome/browser/banners/AppBannerManager.java File chrome/android/java/src/org/chromium/chrome/browser/banners/AppBannerManager.java (right): https://chromiumcodereview.appspot.com/1310223002/diff/60001/chrome/android/java/src/org/chromium/chrome/browser/banners/AppBannerManager.java#newcode76 chrome/android/java/src/org/chromium/chrome/browser/banners/AppBannerManager.java:76: ...
5 years, 4 months ago (2015-08-26 02:01:20 UTC) #11
Lalit Maganti
Dan: please take a look at my comments as there are responses to your comments ...
5 years, 3 months ago (2015-08-26 13:11:56 UTC) #12
Lalit Maganti
https://codereview.chromium.org/1310223002/diff/120001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java File chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java (right): https://codereview.chromium.org/1310223002/diff/120001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java#newcode298 chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java:298: public static String getEncodedMac(Context context, String url) { This ...
5 years, 3 months ago (2015-08-26 13:19:31 UTC) #13
Lalit Maganti
https://codereview.chromium.org/1310223002/diff/120001/chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h File chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h (right): https://codereview.chromium.org/1310223002/diff/120001/chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h#newcode57 chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h:57: int ideal_splash_icon_size_in_dp, Eh I missed the change from icon ...
5 years, 3 months ago (2015-08-26 21:18:21 UTC) #14
Lalit Maganti
https://codereview.chromium.org/1310223002/diff/120001/chrome/browser/android/banners/app_banner_data_fetcher_android.h File chrome/browser/android/banners/app_banner_data_fetcher_android.h (right): https://codereview.chromium.org/1310223002/diff/120001/chrome/browser/android/banners/app_banner_data_fetcher_android.h#newcode20 chrome/browser/android/banners/app_banner_data_fetcher_android.h:20: int ideal_splash_icon_size_in_dp, And here.
5 years, 3 months ago (2015-08-26 21:22:29 UTC) #15
gone
https://chromiumcodereview.appspot.com/1310223002/diff/120001/chrome/android/java/res/values/dimens.xml File chrome/android/java/res/values/dimens.xml (right): https://chromiumcodereview.appspot.com/1310223002/diff/120001/chrome/android/java/res/values/dimens.xml#newcode163 chrome/android/java/res/values/dimens.xml:163: nit: useless whitespace https://chromiumcodereview.appspot.com/1310223002/diff/120001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java File chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java (right): https://chromiumcodereview.appspot.com/1310223002/diff/120001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java#newcode48 chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java:48: ...
5 years, 3 months ago (2015-08-26 21:39:25 UTC) #16
Lalit Maganti
https://codereview.chromium.org/1310223002/diff/120001/chrome/android/java/res/values/dimens.xml File chrome/android/java/res/values/dimens.xml (right): https://codereview.chromium.org/1310223002/diff/120001/chrome/android/java/res/values/dimens.xml#newcode163 chrome/android/java/res/values/dimens.xml:163: On 2015/08/26 at 21:39:25, dfalcantara wrote: > nit: useless ...
5 years, 3 months ago (2015-08-26 22:55:01 UTC) #17
gone
Implementation l-g-t-m; you need tests for everything you've added. https://chromiumcodereview.appspot.com/1310223002/diff/220001/chrome/browser/android/banners/app_banner_data_fetcher_android.cc File chrome/browser/android/banners/app_banner_data_fetcher_android.cc (right): https://chromiumcodereview.appspot.com/1310223002/diff/220001/chrome/browser/android/banners/app_banner_data_fetcher_android.cc#newcode60 chrome/browser/android/banners/app_banner_data_fetcher_android.cc:60: ...
5 years, 3 months ago (2015-08-27 18:00:29 UTC) #18
Lalit Maganti
By tests do you mean Java tests which also test C++ stuff like those which ...
5 years, 3 months ago (2015-08-27 18:57:15 UTC) #19
gone
I'm not following; you're adding the downloading of splash screen images, right? Are there any ...
5 years, 3 months ago (2015-08-27 19:06:05 UTC) #20
Lalit Maganti
On 2015/08/27 at 19:06:05, dfalcantara wrote: > I'm not following; you're adding the downloading of ...
5 years, 3 months ago (2015-08-27 19:16:26 UTC) #21
Lalit Maganti
https://codereview.chromium.org/1310223002/diff/220001/chrome/browser/android/banners/app_banner_infobar_delegate_android.h File chrome/browser/android/banners/app_banner_infobar_delegate_android.h (right): https://codereview.chromium.org/1310223002/diff/220001/chrome/browser/android/banners/app_banner_infobar_delegate_android.h#newcode79 chrome/browser/android/banners/app_banner_infobar_delegate_android.h:79: int event_request_id_; On 2015/08/27 at 19:06:05, dfalcantara wrote: > ...
5 years, 3 months ago (2015-08-27 19:16:40 UTC) #22
gone
On 2015/08/27 19:16:26, Lalit Maganti wrote: > On 2015/08/27 at 19:06:05, dfalcantara wrote: > > ...
5 years, 3 months ago (2015-08-27 19:50:28 UTC) #23
gone
On 2015/08/27 19:50:28, dfalcantara wrote: > On 2015/08/27 19:16:26, Lalit Maganti wrote: > > On ...
5 years, 3 months ago (2015-08-27 19:50:48 UTC) #24
Lalit Maganti
OK that sounds good to me. I'll add those after the registry patch.
5 years, 3 months ago (2015-08-27 19:52:12 UTC) #25
Lalit Maganti
OK that sounds good to me. I'll add those after the registry patch.
5 years, 3 months ago (2015-08-27 19:52:12 UTC) #26
Lalit Maganti
Added tests. https://codereview.chromium.org/1310223002/diff/220001/chrome/browser/android/banners/app_banner_infobar_delegate_android.h File chrome/browser/android/banners/app_banner_infobar_delegate_android.h (right): https://codereview.chromium.org/1310223002/diff/220001/chrome/browser/android/banners/app_banner_infobar_delegate_android.h#newcode79 chrome/browser/android/banners/app_banner_infobar_delegate_android.h:79: int event_request_id_; On 2015/08/27 19:16:40, Lalit Maganti ...
5 years, 3 months ago (2015-09-01 15:33:08 UTC) #27
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1310223002/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1310223002/260001
5 years, 3 months ago (2015-09-01 18:29:19 UTC) #29
gone
Running a dry run because I'm confused about how the test can pass. https://chromiumcodereview.appspot.com/1310223002/diff/260001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java File ...
5 years, 3 months ago (2015-09-01 18:33:52 UTC) #30
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 3 months ago (2015-09-01 19:35:14 UTC) #32
Lalit Maganti
https://codereview.chromium.org/1310223002/diff/260001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java File chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java (right): https://codereview.chromium.org/1310223002/diff/260001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java#newcode169 chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java:169: * Stores the webapp data inside WebappDataStorage for the ...
5 years, 3 months ago (2015-09-01 19:45:52 UTC) #33
gone
lgtm, but I'd like a pointer to the app banner code to see if it ...
5 years, 3 months ago (2015-09-01 20:50:53 UTC) #34
Lalit Maganti
On 2015/09/01 20:50:53, dfalcantara wrote: > lgtm, but I'd like a pointer to the app ...
5 years, 3 months ago (2015-09-01 21:11:24 UTC) #35
mlamouri (slow - plz ping)
I will have a look after the registry CL is updated. This CL might require ...
5 years, 3 months ago (2015-09-02 11:05:10 UTC) #36
Lalit Maganti
Updated to patch to reflect the new semantics of registry and to be based off ...
5 years, 3 months ago (2015-09-02 13:14:05 UTC) #37
mlamouri (slow - plz ping)
Looks fine after a first pass but I really do not like the Observer being ...
5 years, 3 months ago (2015-09-02 16:56:58 UTC) #38
Lalit Maganti
https://codereview.chromium.org/1310223002/diff/320001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java File chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java (right): https://codereview.chromium.org/1310223002/diff/320001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java#newcode172 chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java:172: * @param id ID of the webapp whose data ...
5 years, 3 months ago (2015-09-02 17:15:42 UTC) #39
gone
Well, the constant rebasing on the other CLs explains why doing reviews on the patch ...
5 years, 3 months ago (2015-09-02 20:47:21 UTC) #40
Lalit Maganti
On 2015/09/02 20:47:21, dfalcantara wrote: > Well, the constant rebasing on the other CLs explains ...
5 years, 3 months ago (2015-09-02 21:18:57 UTC) #41
Lalit Maganti
https://codereview.chromium.org/1310223002/diff/320001/chrome/browser/android/shortcut_helper.cc File chrome/browser/android/shortcut_helper.cc (right): https://codereview.chromium.org/1310223002/diff/320001/chrome/browser/android/shortcut_helper.cc#newcode88 chrome/browser/android/shortcut_helper.cc:88: Java_ShortcutHelper_storeWebappData( On 2015/09/02 20:47:21, dfalcantara wrote: > On 2015/09/02 ...
5 years, 3 months ago (2015-09-03 11:12:32 UTC) #42
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1310223002/400001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1310223002/400001
5 years, 3 months ago (2015-09-03 20:48:48 UTC) #44
mlamouri (slow - plz ping)
Apart from the test issue, l-g-t-m. I will review the tests when they will be ...
5 years, 3 months ago (2015-09-03 22:58:40 UTC) #45
Lalit Maganti
Mounir: PTAL - I'm using the factory pattern + subclassing to get rid of observers. ...
5 years, 3 months ago (2015-09-04 11:13:24 UTC) #46
mlamouri (slow - plz ping)
lgtm with comments applied. Thanks for taking the time to fix the observer issue! :) ...
5 years, 3 months ago (2015-09-04 13:08:44 UTC) #47
Lalit Maganti
https://codereview.chromium.org/1310223002/diff/440001/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappDataStorage.java File chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappDataStorage.java (right): https://codereview.chromium.org/1310223002/diff/440001/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappDataStorage.java#newcode82 chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappDataStorage.java:82: * Sets the observer to use. On 2015/09/04 13:08:44, ...
5 years, 3 months ago (2015-09-04 14:10:26 UTC) #48
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1310223002/460001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1310223002/460001
5 years, 3 months ago (2015-09-04 14:10:43 UTC) #50
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/65793) ios_rel_device_ninja on ...
5 years, 3 months ago (2015-09-04 14:12:35 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1310223002/480001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1310223002/480001
5 years, 3 months ago (2015-09-04 14:20:40 UTC) #55
commit-bot: I haz the power
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/94374)
5 years, 3 months ago (2015-09-04 14:42:57 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1310223002/470030 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1310223002/470030
5 years, 3 months ago (2015-09-04 14:55:06 UTC) #60
commit-bot: I haz the power
Committed patchset #26 (id:470030)
5 years, 3 months ago (2015-09-04 16:22:21 UTC) #61
commit-bot: I haz the power
5 years, 3 months ago (2015-09-04 16:23:04 UTC) #62
Message was sent while issue was closed.
Patchset 26 (id:??) landed as
https://crrev.com/d93c2ed0a3bf8b3d4662e1e4f2961070d8d7eb1a
Cr-Commit-Position: refs/heads/master@{#347419}

Powered by Google App Engine
This is Rietveld 408576698