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

Issue 2064943002: Pass in extra parameters to WebApkBuilder#buildWebApkAsync() (Closed)

Created:
4 years, 6 months ago by pkotwicz
Modified:
4 years, 5 months ago
CC:
chromium-reviews, darin-cc_chromium.org, jam, mkwst+moarreviews-renderer_chromium.org, mlamouri+watch-manifest_chromium.org, mlamouri+watch-content_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Pass in extra parameters to WebApkBuilder#buildWebApkAsync() This CL: - Passes in the same parameters to WebApkBuilder#buildWebApkAsync() as those passed to ShortcutHelper#createWebappShortcutIntent(). This is necessary because WebAPKs and Web apps use the same splash screen rendering logic. - Passes in the Web Manifest URL and the icon URL to WebApkBuilder#buildWebApkAsync(). If the Chrome server has previously generated a WebAPK for a (manifestUrl, iconURL) pair, it is possible to download a WebAPK for the (manifestUrl, iconURL) pair from the Chrome server without uploading the icon bitmap to the server. BUG=619739 Committed: https://crrev.com/b8c25a180344260005e9ecd261dd594b84d9c903 Cr-Commit-Position: refs/heads/master@{#403523}

Patch Set 1 : Merge branch 'master' into webapk_manifest #

Total comments: 10

Patch Set 2 : Merge branch 'master' into webapk_manifest #

Total comments: 3

Patch Set 3 : Merge branch 'master' into webapk_manifest #

Total comments: 1

Patch Set 4 : Merge branch 'master' into webapk_manifest #

Patch Set 5 : Merge branch 'master' into webapk_manifest000 #

Patch Set 6 : Merge branch 'master' into webapk_manifest000 #

Patch Set 7 : Merge branch 'master' into webapk_manifest000 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+156 lines, -95 lines) Patch
M chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java View 2 chunks +7 lines, -5 lines 0 comments Download
M chrome/android/java/src/org/chromium/chrome/browser/webapps/WebApkBuilder.java View 1 2 3 4 1 chunk +18 lines, -6 lines 0 comments Download
M chrome/browser/android/banners/app_banner_data_fetcher_android.h View 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/android/banners/app_banner_data_fetcher_android.cc View 1 2 3 3 chunks +6 lines, -5 lines 0 comments Download
M chrome/browser/android/banners/app_banner_infobar_delegate_android.h View 1 2 3 4 2 chunks +6 lines, -2 lines 0 comments Download
M chrome/browser/android/banners/app_banner_infobar_delegate_android.cc View 1 2 3 4 4 chunks +15 lines, -9 lines 0 comments Download
M chrome/browser/android/shortcut_helper.cc View 1 2 2 chunks +6 lines, -1 line 0 comments Download
M chrome/browser/android/shortcut_info.h View 1 2 2 chunks +2 lines, -1 line 0 comments Download
M chrome/browser/android/shortcut_info.cc View 1 2 3 1 chunk +1 line, -2 lines 0 comments Download
M chrome/browser/android/webapps/add_to_homescreen_data_fetcher.h View 1 2 3 2 chunks +4 lines, -3 lines 0 comments Download
M chrome/browser/android/webapps/add_to_homescreen_data_fetcher.cc View 1 2 3 4 chunks +12 lines, -12 lines 0 comments Download
M chrome/browser/banners/app_banner_data_fetcher.h View 1 2 3 4 chunks +13 lines, -5 lines 0 comments Download
M chrome/browser/banners/app_banner_data_fetcher.cc View 1 2 3 6 chunks +12 lines, -14 lines 0 comments Download
M chrome/browser/banners/app_banner_data_fetcher_desktop.h View 1 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/banners/app_banner_data_fetcher_desktop.cc View 1 2 3 4 5 4 chunks +6 lines, -5 lines 0 comments Download
M chrome/browser/extensions/bookmark_app_helper.h View 1 2 3 4 5 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/extensions/bookmark_app_helper.cc View 1 2 3 4 5 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/extensions/bookmark_app_helper_unittest.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M content/browser/manifest/manifest_browsertest.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M content/browser/manifest/manifest_manager_host.h View 1 2 3 2 chunks +3 lines, -2 lines 0 comments Download
M content/browser/manifest/manifest_manager_host.cc View 1 2 3 3 chunks +3 lines, -2 lines 0 comments Download
M content/common/manifest_manager_messages.h View 1 2 3 1 chunk +4 lines, -3 lines 0 comments Download
M content/public/browser/web_contents.h View 1 2 3 1 chunk +3 lines, -2 lines 0 comments Download
M content/renderer/devtools/devtools_agent.h View 1 2 3 2 chunks +3 lines, -0 lines 0 comments Download
M content/renderer/devtools/devtools_agent.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/manifest/manifest_manager.h View 1 2 3 3 chunks +6 lines, -1 line 0 comments Download
M content/renderer/manifest/manifest_manager.cc View 1 2 3 4 chunks +12 lines, -8 lines 0 comments Download
M content/renderer/push_messaging/push_messaging_dispatcher.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/push_messaging/push_messaging_dispatcher.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 61 (23 generated)
pkotwicz
Xi, can you please take a look?
4 years, 6 months ago (2016-06-13 23:34:01 UTC) #3
Xi Han
Overall looks good to me, thanks for putting these together! https://codereview.chromium.org/2064943002/diff/20001/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/2064943002/diff/20001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java#newcode158 ...
4 years, 6 months ago (2016-06-15 14:09:35 UTC) #4
pkotwicz
Xi can you please take another look? https://codereview.chromium.org/2064943002/diff/20001/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/2064943002/diff/20001/chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java#newcode158 chrome/android/java/src/org/chromium/chrome/browser/ShortcutHelper.java:158: iconUrl, icon, ...
4 years, 6 months ago (2016-06-15 14:19:13 UTC) #5
Xi Han
lgtm
4 years, 6 months ago (2016-06-15 14:32:46 UTC) #6
Xi Han
On 2016/06/15 14:32:46, Xi Han wrote: > lgtm Please update the "Review-Url" in the CL ...
4 years, 6 months ago (2016-06-15 17:19:07 UTC) #7
pkotwicz
dfalcantara@ can you please take a look? For context, I am in the process of ...
4 years, 6 months ago (2016-06-15 17:56:15 UTC) #10
gone
This is mucking with ShortcutHelper. Adding dom and mounir.
4 years, 6 months ago (2016-06-15 17:57:54 UTC) #12
dominickn
Very quick pass through. Is there anywhere we can see WebApkBuilder#buildWebApkAsync() for context? https://codereview.chromium.org/2064943002/diff/20001/chrome/browser/android/shortcut_info.cc File ...
4 years, 6 months ago (2016-06-15 19:17:15 UTC) #13
pkotwicz
dominickn@ can you please take another look? There is nowhere that you can see the ...
4 years, 6 months ago (2016-06-15 20:34:24 UTC) #15
dominickn
https://codereview.chromium.org/2064943002/diff/60001/chrome/browser/android/webapps/add_to_homescreen_data_fetcher.cc File chrome/browser/android/webapps/add_to_homescreen_data_fetcher.cc (right): https://codereview.chromium.org/2064943002/diff/60001/chrome/browser/android/webapps/add_to_homescreen_data_fetcher.cc#newcode245 chrome/browser/android/webapps/add_to_homescreen_data_fetcher.cc:245: Instead of passing icon_url through OnManifestIconFetched() and NotifyObserver(), can ...
4 years, 6 months ago (2016-06-16 21:16:36 UTC) #16
pkotwicz
dominickn@ can you please take another look? I think that I have addressed all of ...
4 years, 6 months ago (2016-06-16 22:26:15 UTC) #18
pkotwicz
dominickn@ can you please take another look? I think that I have addressed all of ...
4 years, 6 months ago (2016-06-16 22:26:16 UTC) #19
dominickn
lgtm
4 years, 6 months ago (2016-06-17 07:55:00 UTC) #20
pkotwicz
mlamouri@ can you please take a look at the changes in content/
4 years, 6 months ago (2016-06-17 14:39:32 UTC) #21
pkotwicz
mlamouri@ can you please take a look at the changes in content/
4 years, 6 months ago (2016-06-23 17:55:22 UTC) #22
pkotwicz
mlamouri@ Ping!
4 years, 6 months ago (2016-06-24 21:53:55 UTC) #23
pkotwicz
mlamouri@ Ping!
4 years, 6 months ago (2016-06-24 21:53:57 UTC) #24
mlamouri (slow - plz ping)
Sorry for the delay :( Did you consider having the url added in the response ...
4 years, 5 months ago (2016-06-27 12:52:33 UTC) #25
pkotwicz
mlamouri@ can you please take another look? I have removed the "manifest URL" from content::Manifest ...
4 years, 5 months ago (2016-06-27 18:40:53 UTC) #26
mlamouri (slow - plz ping)
pkotwicz@, that was meant as a suggestion. The question wasn't a rhetorical question and I ...
4 years, 5 months ago (2016-06-28 13:26:44 UTC) #27
pkotwicz
sievers@ can you please take a look at the changes in content/ (except for content/browser/manifest ...
4 years, 5 months ago (2016-06-28 14:10:47 UTC) #29
no sievers
On 2016/06/28 14:10:47, pkotwicz wrote: > sievers@ can you please take a look at the ...
4 years, 5 months ago (2016-06-28 22:47:48 UTC) #30
gone
OWNERs lgtm
4 years, 5 months ago (2016-06-29 16:08:21 UTC) #31
pkotwicz
dfalcantara@ for OWNERS rubberstamp
4 years, 5 months ago (2016-06-29 21:54:08 UTC) #32
gone
Already gave it to you, right above.
4 years, 5 months ago (2016-06-29 21:54:34 UTC) #33
pkotwicz
dfalcantara@ just saw it :) Thanks!
4 years, 5 months ago (2016-06-29 22:07:39 UTC) #34
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/2064943002/180001
4 years, 5 months ago (2016-06-29 22:30:30 UTC) #39
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/209944)
4 years, 5 months ago (2016-06-29 22:50:57 UTC) #41
pkotwicz
Robert can you please take a look at the changes in content/common/manifest_manager_messages.h benwells@, can you ...
4 years, 5 months ago (2016-06-30 00:10:07 UTC) #43
pkotwicz
Robert can you please take a look at the changes in content/common/manifest_manager_messages.h sky@ can you ...
4 years, 5 months ago (2016-06-30 15:44:06 UTC) #46
Robert Sesek
_message lgtm
4 years, 5 months ago (2016-06-30 16:56:35 UTC) #47
pkotwicz
sky@ can you please take a look at the changes in chrome/browser/extensions (benwells@ is OOO)
4 years, 5 months ago (2016-06-30 18:08:24 UTC) #48
sky
LGTM
4 years, 5 months ago (2016-06-30 21:06:33 UTC) #49
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/2064943002/200001
4 years, 5 months ago (2016-06-30 22:13:10 UTC) #52
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_ozone_rel_ng/builds/195165) linux_chromium_compile_dbg_ng on master.tryserver.chromium.linux (JOB_FAILED, ...
4 years, 5 months ago (2016-06-30 22:34:05 UTC) #54
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/2064943002/220001
4 years, 5 months ago (2016-07-01 20:00:33 UTC) #57
commit-bot: I haz the power
Committed patchset #7 (id:220001)
4 years, 5 months ago (2016-07-01 20:55:12 UTC) #59
commit-bot: I haz the power
4 years, 5 months ago (2016-07-01 20:57:02 UTC) #61
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/b8c25a180344260005e9ecd261dd594b84d9c903
Cr-Commit-Position: refs/heads/master@{#403523}

Powered by Google App Engine
This is Rietveld 408576698