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

Issue 475543004: Added 'launcher_page' field to extension manifest.json format. (Closed)

Created:
6 years, 4 months ago by Matt Giuca
Modified:
6 years, 4 months ago
Reviewers:
benwells
CC:
chromium-reviews, chrome-apps-syd-reviews_chromium.org, tfarina, extensions-reviews_chromium.org, chromium-apps-reviews_chromium.org, calamity, tapted
Project:
chromium
Visibility:
Public.

Description

Added 'launcher_page' field to extension manifest.json format. Adds a new manifest section which allows extensions (currently, only platform apps) to provide a page in the experimental app launcher, eg: "launcher_page": { "page": "index.html" } All installed apps with a valid launcher_page section will be given a page in the launcher. This feature is currently only available on dev channel and whitelisted (currently to a few testing apps; this list will expand in the future, and can be overridden with --whitelisted-extension-id=ID). Updated CustomLauncherPageBrowserTest to use its manifest to install the launcher page, rather than using --custom-launcher-page. BUG=399131, 404000 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=289931

Patch Set 1 #

Patch Set 2 : Whitelist some internal testing extension IDs. #

Patch Set 3 : Making available to stable channel. #

Patch Set 4 : Rename launcher_page.document to launcher_page.page. #

Total comments: 2

Patch Set 5 : Made a more palatable error message. #

Patch Set 6 : Remove obsolete comment. #

Total comments: 4

Patch Set 7 : Remove launcher_page.icons, for now. #

Total comments: 2

Patch Set 8 : Don't need launcher_page.page explicitly in the manifest features. #

Patch Set 9 : Added TODO to add a proper parser. #

Patch Set 10 : Formatting. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+54 lines, -11 lines) Patch
M chrome/browser/apps/custom_launcher_page_browsertest_views.cc View 3 chunks +7 lines, -6 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_view_delegate.cc View 1 2 3 4 5 6 7 8 9 4 chunks +30 lines, -4 lines 0 comments Download
M chrome/common/extensions/api/_manifest_features.json View 1 2 3 4 5 6 7 1 chunk +10 lines, -0 lines 0 comments Download
M chrome/test/data/extensions/platform_apps/custom_launcher_page/manifest.json View 1 2 3 4 5 6 1 chunk +3 lines, -1 line 0 comments Download
M extensions/common/manifest_constants.h View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M extensions/common/manifest_constants.cc View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
Matt Giuca
calamity, tapted: You might want to look over this too. Note: I don't have an ...
6 years, 4 months ago (2014-08-14 05:28:07 UTC) #1
Matt Giuca
Sent out API proposal: https://docs.google.com/document/d/1xewDWAmOcJ-NjMzt0NKlxRw_ez9IWeLh3XLAfkMiF5c/edit?usp=sharing PTAL. Have changed launcher_page.document to launcher_page.page (as suggested on the ...
6 years, 4 months ago (2014-08-15 03:44:05 UTC) #2
Matt Giuca
https://codereview.chromium.org/475543004/diff/60001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/475543004/diff/60001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode146 chrome/browser/ui/app_list/app_list_view_delegate.cc:146: << ". Ignoring launcher page."; This makes a pretty ...
6 years, 4 months ago (2014-08-15 04:17:09 UTC) #3
Matt Giuca
https://codereview.chromium.org/475543004/diff/60001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/475543004/diff/60001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode146 chrome/browser/ui/app_list/app_list_view_delegate.cc:146: << ". Ignoring launcher page."; On 2014/08/15 04:17:09, Matt ...
6 years, 4 months ago (2014-08-15 04:20:01 UTC) #4
benwells
https://codereview.chromium.org/475543004/diff/100001/chrome/common/extensions/api/_manifest_features.json File chrome/common/extensions/api/_manifest_features.json (right): https://codereview.chromium.org/475543004/diff/100001/chrome/common/extensions/api/_manifest_features.json#newcode229 chrome/common/extensions/api/_manifest_features.json:229: "min_manifest_version": 2, Do you need to specify this? https://codereview.chromium.org/475543004/diff/100001/chrome/common/extensions/api/_manifest_features.json#newcode237 ...
6 years, 4 months ago (2014-08-15 08:30:21 UTC) #5
Matt Giuca
https://codereview.chromium.org/475543004/diff/100001/chrome/common/extensions/api/_manifest_features.json File chrome/common/extensions/api/_manifest_features.json (right): https://codereview.chromium.org/475543004/diff/100001/chrome/common/extensions/api/_manifest_features.json#newcode229 chrome/common/extensions/api/_manifest_features.json:229: "min_manifest_version": 2, Well, no, but I assumed all new ...
6 years, 4 months ago (2014-08-15 08:35:40 UTC) #6
benwells
lgtm with the todo and redundant featuers removed. https://codereview.chromium.org/475543004/diff/120001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/475543004/diff/120001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode138 chrome/browser/ui/app_list/app_list_view_delegate.cc:138: if ...
6 years, 4 months ago (2014-08-15 08:38:24 UTC) #7
Matt Giuca
https://codereview.chromium.org/475543004/diff/120001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/475543004/diff/120001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode138 chrome/browser/ui/app_list/app_list_view_delegate.cc:138: if (!manifest->HasKey(extensions::manifest_keys::kLauncherPage)) On 2014/08/15 08:38:24, benwells wrote: > You ...
6 years, 4 months ago (2014-08-15 08:40:17 UTC) #8
Matt Giuca
The CQ bit was checked by mgiuca@chromium.org
6 years, 4 months ago (2014-08-15 08:44:35 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mgiuca@chromium.org/475543004/180001
6 years, 4 months ago (2014-08-15 08:46:23 UTC) #10
commit-bot: I haz the power
6 years, 4 months ago (2014-08-15 17:51:42 UTC) #11
Message was sent while issue was closed.
Committed patchset #10 (180001) as 289931

Powered by Google App Engine
This is Rietveld 408576698