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

Issue 317993003: Send an onInstalled event for shared module update (Closed)

Created:
6 years, 6 months ago by elijahtaylor1
Modified:
6 years, 6 months ago
CC:
Marijn Kruisselbrink, chromium-reviews, chromium-apps-reviews_chromium.org, extensions-reviews_chromium.org
Visibility:
Public.

Description

Send an onInstalled event for shared module update BUG=276723 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=276871

Patch Set 1 #

Total comments: 5

Patch Set 2 : feedback, added getdependentextensions to extensionsystem #

Patch Set 3 : rebase #

Patch Set 4 : fixes #

Patch Set 5 : fix tests #

Total comments: 2

Patch Set 6 : const ExtensionSet -> ExtensionSet #

Patch Set 7 : rebase #

Patch Set 8 : add test / cl format #

Total comments: 2

Patch Set 9 : add checks to test #

Patch Set 10 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+101 lines, -7 lines) Patch
M apps/shell/browser/shell_extension_system.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -0 lines 0 comments Download
M apps/shell/browser/shell_extension_system.cc View 1 2 3 4 5 6 7 8 9 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/extensions/extension_system_impl.h View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/extensions/extension_system_impl.cc View 1 2 3 4 5 2 chunks +7 lines, -0 lines 0 comments Download
M chrome/browser/extensions/shared_module_apitest.cc View 1 2 3 4 5 6 7 2 chunks +19 lines, -0 lines 0 comments Download
M chrome/browser/extensions/shared_module_service.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -3 lines 0 comments Download
M chrome/browser/extensions/shared_module_service.cc View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -3 lines 0 comments Download
M chrome/browser/extensions/test_extension_system.h View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/extensions/test_extension_system.cc View 1 2 3 4 5 2 chunks +7 lines, -0 lines 0 comments Download
M chrome/test/data/extensions/api_test/shared_module/import_pass/check.js View 1 2 3 4 5 6 7 8 1 chunk +11 lines, -0 lines 0 comments Download
M extensions/browser/api/runtime/runtime_api.cc View 1 2 3 4 5 3 chunks +27 lines, -0 lines 0 comments Download
M extensions/browser/extension_system.h View 1 2 3 4 5 2 chunks +7 lines, -0 lines 0 comments Download
M extensions/common/api/runtime.json View 1 1 chunk +6 lines, -1 line 0 comments Download

Messages

Total messages: 21 (0 generated)
elijahtaylor1
Antony, can you take an early look at this and provide guidance? I also didn't ...
6 years, 6 months ago (2014-06-05 22:36:45 UTC) #1
asargent_no_longer_on_chrome
+cc mek for the question about where we might have tests for the onInstalled events. ...
6 years, 6 months ago (2014-06-06 21:07:01 UTC) #2
elijahtaylor1
https://codereview.chromium.org/317993003/diff/1/extensions/browser/api/runtime/runtime_api.cc File extensions/browser/api/runtime/runtime_api.cc (right): https://codereview.chromium.org/317993003/diff/1/extensions/browser/api/runtime/runtime_api.cc#newcode17 extensions/browser/api/runtime/runtime_api.cc:17: #include "chrome/browser/extensions/shared_module_service.h" On 2014/06/06 21:07:01, Antony Sargent wrote: > ...
6 years, 6 months ago (2014-06-06 21:20:42 UTC) #3
elijahtaylor1
PTAL, I implemented the quick and dirty suggestion https://codereview.chromium.org/317993003/diff/1/extensions/common/api/runtime.json File extensions/common/api/runtime.json (right): https://codereview.chromium.org/317993003/diff/1/extensions/common/api/runtime.json#newcode366 extensions/common/api/runtime.json:366: "description": ...
6 years, 6 months ago (2014-06-06 22:41:56 UTC) #4
asargent_no_longer_on_chrome
lgtm https://codereview.chromium.org/317993003/diff/80001/extensions/browser/extension_system.h File extensions/browser/extension_system.h (right): https://codereview.chromium.org/317993003/diff/80001/extensions/browser/extension_system.h#newcode136 extensions/browser/extension_system.h:136: virtual scoped_ptr<const ExtensionSet> GetDependentExtensions( nit: it looks like ...
6 years, 6 months ago (2014-06-09 18:49:29 UTC) #5
elijahtaylor1
https://codereview.chromium.org/317993003/diff/80001/extensions/browser/extension_system.h File extensions/browser/extension_system.h (right): https://codereview.chromium.org/317993003/diff/80001/extensions/browser/extension_system.h#newcode136 extensions/browser/extension_system.h:136: virtual scoped_ptr<const ExtensionSet> GetDependentExtensions( On 2014/06/09 18:49:29, Antony Sargent ...
6 years, 6 months ago (2014-06-09 20:48:35 UTC) #6
asargent_no_longer_on_chrome
test lgtm https://codereview.chromium.org/317993003/diff/140001/chrome/test/data/extensions/api_test/shared_module/import_pass/check.js File chrome/test/data/extensions/api_test/shared_module/import_pass/check.js (right): https://codereview.chromium.org/317993003/diff/140001/chrome/test/data/extensions/api_test/shared_module/import_pass/check.js#newcode13 chrome/test/data/extensions/api_test/shared_module/import_pass/check.js:13: chrome.test.sendMessage('shared_module_updated'); can you also check here that ...
6 years, 6 months ago (2014-06-11 17:01:57 UTC) #7
elijahtaylor1
https://codereview.chromium.org/317993003/diff/140001/chrome/test/data/extensions/api_test/shared_module/import_pass/check.js File chrome/test/data/extensions/api_test/shared_module/import_pass/check.js (right): https://codereview.chromium.org/317993003/diff/140001/chrome/test/data/extensions/api_test/shared_module/import_pass/check.js#newcode13 chrome/test/data/extensions/api_test/shared_module/import_pass/check.js:13: chrome.test.sendMessage('shared_module_updated'); On 2014/06/11 17:01:56, Antony Sargent wrote: > can ...
6 years, 6 months ago (2014-06-11 18:01:00 UTC) #8
elijahtaylor1
The CQ bit was checked by elijahtaylor@chromium.org
6 years, 6 months ago (2014-06-11 18:01:06 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/elijahtaylor@chromium.org/317993003/160001
6 years, 6 months ago (2014-06-11 18:04:55 UTC) #10
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_dbg_triggered_tests on tryserver.chromium ...
6 years, 6 months ago (2014-06-11 20:39:49 UTC) #11
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-11 20:43:58 UTC) #12
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/win_chromium_rel/builds/26085)
6 years, 6 months ago (2014-06-11 20:43:59 UTC) #13
elijahtaylor1
The CQ bit was checked by elijahtaylor@chromium.org
6 years, 6 months ago (2014-06-12 16:50:19 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/elijahtaylor@chromium.org/317993003/160001
6 years, 6 months ago (2014-06-12 16:51:33 UTC) #15
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_dbg_triggered_tests on tryserver.chromium ...
6 years, 6 months ago (2014-06-12 18:01:13 UTC) #16
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-12 18:13:18 UTC) #17
commit-bot: I haz the power
Try jobs failed on following builders: android_dbg_triggered_tests on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/android_dbg_triggered_tests/builds/161662)
6 years, 6 months ago (2014-06-12 18:13:19 UTC) #18
elijahtaylor1
The CQ bit was checked by elijahtaylor@chromium.org
6 years, 6 months ago (2014-06-12 19:17:27 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/elijahtaylor@chromium.org/317993003/180001
6 years, 6 months ago (2014-06-12 19:21:30 UTC) #20
commit-bot: I haz the power
6 years, 6 months ago (2014-06-13 00:46:47 UTC) #21
Message was sent while issue was closed.
Change committed as 276871

Powered by Google App Engine
This is Rietveld 408576698