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

Issue 501453002: Decouple script_url from ServiceWorkerRegistration (Closed)

Created:
6 years, 4 months ago by falken
Modified:
6 years, 3 months ago
Reviewers:
michaeln, nhiroki, horo
CC:
chromium-reviews, jsbell+serviceworker_chromium.org, tzik, serviceworker-reviews, jam, kinuko+serviceworker, nhiroki, darin-cc_chromium.org, horo+watch_chromium.org
Project:
chromium
Visibility:
Public.

Description

Decouple script URL from ServiceWorkerRegistration Before this patch, ServiceWorkerRegistration had a constant script URL. The spec has a different model: .installing, .waiting, and .active workers for the same registration can be from different script URLs. This patch removes script_url from SWRegistration, in preparation for implementing the spec steps for same-scope, new-script-url registration. BUG=398355 Committed: https://crrev.com/9f2188e301af9fdaf1454703b610234413134361 Cr-Commit-Position: refs/heads/master@{#291882}

Patch Set 1 #

Total comments: 2

Patch Set 2 : sync #

Patch Set 3 : review comments and add unittests #

Total comments: 1

Patch Set 4 : sync after major collision #

Unified diffs Side-by-side diffs Delta from patch set Stats (+185 lines, -97 lines) Patch
M content/browser/resources/service_worker/serviceworker_internals.html View 2 chunks +4 lines, -4 lines 0 comments Download
M content/browser/resources/service_worker/serviceworker_internals.js View 1 chunk +1 line, -1 line 0 comments Download
M content/browser/service_worker/service_worker_browsertest.cc View 1 2 3 3 chunks +3 lines, -11 lines 0 comments Download
M content/browser/service_worker/service_worker_context_request_handler_unittest.cc View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M content/browser/service_worker/service_worker_context_wrapper.cc View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/service_worker/service_worker_controllee_request_handler_unittest.cc View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M content/browser/service_worker/service_worker_database.h View 1 chunk +1 line, -1 line 0 comments Download
M content/browser/service_worker/service_worker_handle.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M content/browser/service_worker/service_worker_handle_unittest.cc View 1 2 3 1 chunk +4 lines, -2 lines 0 comments Download
M content/browser/service_worker/service_worker_info.h View 4 chunks +2 lines, -2 lines 0 comments Download
M content/browser/service_worker/service_worker_info.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M content/browser/service_worker/service_worker_internals_ui.cc View 1 2 3 2 chunks +1 line, -1 line 0 comments Download
M content/browser/service_worker/service_worker_job_coordinator.cc View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_job_unittest.cc View 1 2 3 3 chunks +74 lines, -2 lines 0 comments Download
M content/browser/service_worker/service_worker_provider_host_unittest.cc View 1 2 3 2 chunks +6 lines, -6 lines 0 comments Download
M content/browser/service_worker/service_worker_register_job.cc View 1 2 3 7 chunks +17 lines, -8 lines 0 comments Download
M content/browser/service_worker/service_worker_registration.h View 4 chunks +4 lines, -6 lines 0 comments Download
M content/browser/service_worker/service_worker_registration.cc View 1 2 3 5 chunks +10 lines, -5 lines 0 comments Download
M content/browser/service_worker/service_worker_registration_unittest.cc View 1 2 3 3 chunks +5 lines, -8 lines 0 comments Download
M content/browser/service_worker/service_worker_storage.cc View 1 2 3 6 chunks +6 lines, -7 lines 0 comments Download
M content/browser/service_worker/service_worker_storage_unittest.cc View 1 2 3 7 chunks +22 lines, -17 lines 0 comments Download
M content/browser/service_worker/service_worker_url_request_job_unittest.cc View 1 2 3 1 chunk +4 lines, -2 lines 0 comments Download
M content/browser/service_worker/service_worker_version.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_version.cc View 4 chunks +4 lines, -2 lines 0 comments Download
M content/browser/service_worker/service_worker_version_unittest.cc View 1 2 3 1 chunk +4 lines, -2 lines 0 comments Download

Messages

Total messages: 22 (0 generated)
falken
michaeln, nhiroki: everything horo: resources/service_worker
6 years, 4 months ago (2014-08-22 10:58:05 UTC) #1
falken
ping!
6 years, 4 months ago (2014-08-25 15:03:51 UTC) #2
michaeln
https://codereview.chromium.org/501453002/diff/1/content/browser/service_worker/service_worker_register_job.cc File content/browser/service_worker/service_worker_register_job.cc (left): https://codereview.chromium.org/501453002/diff/1/content/browser/service_worker/service_worker_register_job.cc#oldcode47 content/browser/service_worker/service_worker_register_job.cc:47: script_url_(registration->script_url()), Can this data member can remain const and ...
6 years, 4 months ago (2014-08-25 22:00:58 UTC) #3
michaeln
> Can this data member can remain const and be reliably set at all times? ...
6 years, 4 months ago (2014-08-25 22:12:17 UTC) #4
falken
https://codereview.chromium.org/501453002/diff/1/content/browser/service_worker/service_worker_register_job.cc File content/browser/service_worker/service_worker_register_job.cc (left): https://codereview.chromium.org/501453002/diff/1/content/browser/service_worker/service_worker_register_job.cc#oldcode47 content/browser/service_worker/service_worker_register_job.cc:47: script_url_(registration->script_url()), On 2014/08/25 22:00:58, michaeln wrote: > Can this ...
6 years, 4 months ago (2014-08-26 01:02:28 UTC) #5
horo
lgtm
6 years, 3 months ago (2014-08-26 02:08:22 UTC) #6
falken
michaeln: PTAL, addressed your comment and added some unittests horo: thx
6 years, 3 months ago (2014-08-26 02:15:02 UTC) #7
michaeln
https://chromiumcodereview.appspot.com/501453002/diff/40001/content/browser/service_worker/service_worker_register_job.cc File content/browser/service_worker/service_worker_register_job.cc (right): https://chromiumcodereview.appspot.com/501453002/diff/40001/content/browser/service_worker/service_worker_register_job.cc#newcode239 content/browser/service_worker/service_worker_register_job.cc:239: Complete(SERVICE_WORKER_ERROR_NOT_FOUND); lgtm, thnx
6 years, 3 months ago (2014-08-26 03:05:53 UTC) #8
falken
The CQ bit was checked by falken@chromium.org
6 years, 3 months ago (2014-08-26 04:01:29 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/falken@chromium.org/501453002/40001
6 years, 3 months ago (2014-08-26 04:02:04 UTC) #10
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_gpu_triggered_tests on tryserver.chromium.gpu ...
6 years, 3 months ago (2014-08-26 05:02:02 UTC) #11
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-26 06:43:36 UTC) #12
commit-bot: I haz the power
Failed to apply patch for content/browser/service_worker/service_worker_browsertest.cc: While running git apply --index -p1; error: patch failed: ...
6 years, 3 months ago (2014-08-26 06:43:38 UTC) #13
falken
The CQ bit was checked by falken@chromium.org
6 years, 3 months ago (2014-08-26 07:16:58 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/falken@chromium.org/501453002/60001
6 years, 3 months ago (2014-08-26 07:18:11 UTC) #15
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_rel_swarming on tryserver.chromium.win ...
6 years, 3 months ago (2014-08-26 08:45:49 UTC) #16
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-26 10:24:51 UTC) #17
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel_swarming on tryserver.chromium.win (http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_x64_rel_swarming/builds/2925)
6 years, 3 months ago (2014-08-26 10:24:52 UTC) #18
falken
The CQ bit was checked by falken@chromium.org
6 years, 3 months ago (2014-08-26 10:26:48 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/falken@chromium.org/501453002/60001
6 years, 3 months ago (2014-08-26 10:27:32 UTC) #20
commit-bot: I haz the power
Committed patchset #4 (60001) as 6cce6b78f0872d2e2f3805b7bb69770d5bf7e97d
6 years, 3 months ago (2014-08-26 11:09:27 UTC) #21
commit-bot: I haz the power
6 years, 3 months ago (2014-09-10 02:42:02 UTC) #22
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/9f2188e301af9fdaf1454703b610234413134361
Cr-Commit-Position: refs/heads/master@{#291882}

Powered by Google App Engine
This is Rietveld 408576698