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

Issue 182383008: Create chrome://serviceworker-internals (Closed)

Created:
6 years, 9 months ago by alecflett
Modified:
6 years, 9 months ago
Reviewers:
kinuko, michaeln, jam, jsbell
CC:
chromium-reviews, jsbell+serviceworker_chromium.org, tzik, serviceworker-reviews, jam, nhiroki, joi+watch-content_chromium.org, darin-cc_chromium.org, horo+watch_chromium.org, kinuko+watch, alecflett+watch_chromium.org
Visibility:
Public.

Description

Create chrome://serviceworker-internals This is the beginning of the internals page for service worker, to aid in debugging and development. This lists all registered service workers and allows you to manually start/stop the workers, as well as unregister them. BUG=351197 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=256858

Patch Set 1 #

Total comments: 1

Patch Set 2 : Add ServiceWorker*Info classes #

Total comments: 18

Patch Set 3 : Update to ToT, address comments #

Patch Set 4 : Make OperationProxy cross-thread-refcounted #

Patch Set 5 : nicer title #

Patch Set 6 : Fix GetInfo / const stuff #

Total comments: 12

Patch Set 7 : Clarify comment, add thread DCHECK, fix crash #

Patch Set 8 : Clarify comment, add thread DCHECK, fix crash #

Patch Set 9 : Allow deletion on any thread #

Total comments: 9

Patch Set 10 : Fix nits #

Total comments: 2

Patch Set 11 : #

Patch Set 12 : #

Patch Set 13 : #

Patch Set 14 : Update to ToT #

Unified diffs Side-by-side diffs Delta from patch set Stats (+838 lines, -0 lines) Patch
M chrome/common/url_constants.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
A + content/browser/resources/service_worker/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 0 chunks +-1 lines, --1 lines 0 comments Download
A content/browser/resources/service_worker/serviceworker_internals.css View 1 chunk +39 lines, -0 lines 0 comments Download
A content/browser/resources/service_worker/serviceworker_internals.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +80 lines, -0 lines 0 comments Download
A content/browser/resources/service_worker/serviceworker_internals.js View 1 chunk +88 lines, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_context_core.h View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_context_core.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
A content/browser/service_worker/service_worker_info.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +49 lines, -0 lines 0 comments Download
A content/browser/service_worker/service_worker_info.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +40 lines, -0 lines 0 comments Download
A content/browser/service_worker/service_worker_internals_ui.h View 1 chunk +54 lines, -0 lines 0 comments Download
A content/browser/service_worker/service_worker_internals_ui.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +421 lines, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_registration.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +3 lines, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_registration.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +11 lines, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_storage.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +7 lines, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_storage.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +17 lines, -1 line 0 comments Download
M content/browser/service_worker/service_worker_version.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +3 lines, -0 lines 0 comments Download
M content/browser/service_worker/service_worker_version.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +9 lines, -0 lines 0 comments Download
M content/browser/webui/content_web_ui_controller_factory.cc View 3 chunks +5 lines, -0 lines 0 comments Download
M content/content_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +4 lines, -0 lines 0 comments Download
M content/content_resources.grd View 1 chunk +3 lines, -0 lines 0 comments Download
M content/public/common/url_constants.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -0 lines 0 comments Download
M content/public/common/url_constants.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 90 (0 generated)
alecflett
Attempt number 2 on this patch - my previous cl seems to have been somehow ...
6 years, 9 months ago (2014-03-03 20:40:46 UTC) #1
michaeln
https://codereview.chromium.org/182383008/diff/1/content/browser/service_worker/service_worker_internals_ui.cc File content/browser/service_worker/service_worker_internals_ui.cc (right): https://codereview.chromium.org/182383008/diff/1/content/browser/service_worker/service_worker_internals_ui.cc#newcode373 content/browser/service_worker/service_worker_internals_ui.cc:373: scoped_ptr<std::vector<ServiceWorkerRegistration*> > registrations) { Don't we need a different ...
6 years, 9 months ago (2014-03-04 00:25:47 UTC) #2
alecflett
On 2014/03/04 00:25:47, michaeln wrote: > https://codereview.chromium.org/182383008/diff/1/content/browser/service_worker/service_worker_internals_ui.cc > File content/browser/service_worker/service_worker_internals_ui.cc (right): > > https://codereview.chromium.org/182383008/diff/1/content/browser/service_worker/service_worker_internals_ui.cc#newcode373 > ...
6 years, 9 months ago (2014-03-04 00:29:41 UTC) #3
michaeln
Probably the content settings UI could be a consumer of this info too. > good ...
6 years, 9 months ago (2014-03-04 01:07:34 UTC) #4
alecflett
Ok, I bit the bullet and did the *Info classes. PTAL.
6 years, 9 months ago (2014-03-04 21:42:29 UTC) #5
kinuko
https://codereview.chromium.org/182383008/diff/20001/content/browser/service_worker/service_worker_info.h File content/browser/service_worker/service_worker_info.h (right): https://codereview.chromium.org/182383008/diff/20001/content/browser/service_worker/service_worker_info.h#newcode15 content/browser/service_worker/service_worker_info.h:15: class ServiceWorkerVersionInfo { nit: could be a struct https://codereview.chromium.org/182383008/diff/20001/content/browser/service_worker/service_worker_info.h#newcode23 ...
6 years, 9 months ago (2014-03-05 03:43:20 UTC) #6
alecflett
https://codereview.chromium.org/182383008/diff/20001/content/browser/service_worker/service_worker_info.h File content/browser/service_worker/service_worker_info.h (right): https://codereview.chromium.org/182383008/diff/20001/content/browser/service_worker/service_worker_info.h#newcode23 content/browser/service_worker/service_worker_info.h:23: bool is_null_; On 2014/03/05 03:43:20, kinuko wrote: > no ...
6 years, 9 months ago (2014-03-05 21:41:20 UTC) #7
michaeln
https://chromiumcodereview.appspot.com/182383008/diff/100001/content/browser/service_worker/service_worker_context_core.h File content/browser/service_worker/service_worker_context_core.h (right): https://chromiumcodereview.appspot.com/182383008/diff/100001/content/browser/service_worker/service_worker_context_core.h#newcode54 content/browser/service_worker/service_worker_context_core.h:54: const std::vector<ServiceWorkerRegistrationInfo>& info)> InfoCallback; Is this used anywhere? https://chromiumcodereview.appspot.com/182383008/diff/100001/content/browser/service_worker/service_worker_internals_ui.cc ...
6 years, 9 months ago (2014-03-06 01:19:01 UTC) #8
alecflett
Clarify comment, add thread DCHECK, fix crash
6 years, 9 months ago (2014-03-06 19:24:32 UTC) #9
alecflett
review comments addressed - clarified some of the comments. PTAL? https://codereview.chromium.org/182383008/diff/100001/content/browser/service_worker/service_worker_context_core.h File content/browser/service_worker/service_worker_context_core.h (right): https://codereview.chromium.org/182383008/diff/100001/content/browser/service_worker/service_worker_context_core.h#newcode54 ...
6 years, 9 months ago (2014-03-06 19:25:15 UTC) #10
michaeln
https://codereview.chromium.org/182383008/diff/100001/content/browser/service_worker/service_worker_internals_ui.cc File content/browser/service_worker/service_worker_internals_ui.cc (right): https://codereview.chromium.org/182383008/diff/100001/content/browser/service_worker/service_worker_internals_ui.cc#newcode36 content/browser/service_worker/service_worker_internals_ui.cc:36: // those values. >> comment seems stale > > ...
6 years, 9 months ago (2014-03-06 19:54:14 UTC) #11
michaeln
also, upload is borked :(
6 years, 9 months ago (2014-03-06 20:14:28 UTC) #12
alecflett
After thinking this over, michaeln helped me realize that this really could be deleted anywhere... ...
6 years, 9 months ago (2014-03-06 23:08:44 UTC) #13
michaeln
lgtm, but please do read the comments https://codereview.chromium.org/182383008/diff/160001/content/browser/service_worker/service_worker_internals_ui.cc File content/browser/service_worker/service_worker_internals_ui.cc (right): https://codereview.chromium.org/182383008/diff/160001/content/browser/service_worker/service_worker_internals_ui.cc#newcode36 content/browser/service_worker/service_worker_internals_ui.cc:36: // itself ...
6 years, 9 months ago (2014-03-06 23:31:48 UTC) #14
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-06 23:44:44 UTC) #15
alecflett
https://codereview.chromium.org/182383008/diff/160001/content/browser/service_worker/service_worker_internals_ui.cc File content/browser/service_worker/service_worker_internals_ui.cc (right): https://codereview.chromium.org/182383008/diff/160001/content/browser/service_worker/service_worker_internals_ui.cc#newcode36 content/browser/service_worker/service_worker_internals_ui.cc:36: // itself when complete. On 2014/03/06 23:31:49, michaeln wrote: ...
6 years, 9 months ago (2014-03-06 23:46:46 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/180001
6 years, 9 months ago (2014-03-06 23:58:40 UTC) #17
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-07 00:34:32 UTC) #18
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=53968
6 years, 9 months ago (2014-03-07 00:34:32 UTC) #19
kinuko
lgtm https://codereview.chromium.org/182383008/diff/180001/content/browser/service_worker/service_worker_info.h File content/browser/service_worker/service_worker_info.h (right): https://codereview.chromium.org/182383008/diff/180001/content/browser/service_worker/service_worker_info.h#newcode35 content/browser/service_worker/service_worker_info.h:35: const ServiceWorkerVersionInfo& pending_version_); nit: pending_version_ -> pending_version (no ...
6 years, 9 months ago (2014-03-07 02:19:08 UTC) #20
kinuko
https://codereview.chromium.org/182383008/diff/20001/content/browser/service_worker/service_worker_info.h File content/browser/service_worker/service_worker_info.h (right): https://codereview.chromium.org/182383008/diff/20001/content/browser/service_worker/service_worker_info.h#newcode37 content/browser/service_worker/service_worker_info.h:37: const ServiceWorkerRegistrationInfo& other); On 2014/03/05 21:41:20, alecflett wrote: > ...
6 years, 9 months ago (2014-03-07 09:20:18 UTC) #21
alecflett
On 2014/03/07 09:20:18, kinuko wrote: > https://codereview.chromium.org/182383008/diff/20001/content/browser/service_worker/service_worker_info.h > File content/browser/service_worker/service_worker_info.h (right): > > https://codereview.chromium.org/182383008/diff/20001/content/browser/service_worker/service_worker_info.h#newcode37 > ...
6 years, 9 months ago (2014-03-07 19:09:28 UTC) #22
michaeln
> Oh boy, really? > > I had early experiments with some extra consts, and ...
6 years, 9 months ago (2014-03-07 20:30:55 UTC) #23
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-07 20:59:28 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/200001
6 years, 9 months ago (2014-03-07 21:00:44 UTC) #25
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-07 21:29:25 UTC) #26
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=54164
6 years, 9 months ago (2014-03-07 21:29:26 UTC) #27
alecflett
jam@ - need a review for the non-serviceworker stuff to get this internals page landed: ...
6 years, 9 months ago (2014-03-07 21:39:32 UTC) #28
jam
lgtm
6 years, 9 months ago (2014-03-07 23:51:29 UTC) #29
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-07 23:52:50 UTC) #30
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/220001
6 years, 9 months ago (2014-03-07 23:54:39 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/220001
6 years, 9 months ago (2014-03-08 11:11:41 UTC) #32
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-08 12:14:47 UTC) #33
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-08 12:14:48 UTC) #34
kinuko
The CQ bit was checked by kinuko@chromium.org
6 years, 9 months ago (2014-03-10 07:48:05 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/220001
6 years, 9 months ago (2014-03-10 07:48:34 UTC) #36
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-10 08:12:05 UTC) #37
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-10 08:12:06 UTC) #38
kinuko
The CQ bit was checked by kinuko@chromium.org
6 years, 9 months ago (2014-03-10 08:25:09 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/220001
6 years, 9 months ago (2014-03-10 08:25:38 UTC) #40
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-10 08:57:24 UTC) #41
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-10 08:57:25 UTC) #42
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-10 17:56:40 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/240001
6 years, 9 months ago (2014-03-10 18:02:58 UTC) #44
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-10 20:08:06 UTC) #45
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-10 20:08:06 UTC) #46
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-10 20:55:29 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/240001
6 years, 9 months ago (2014-03-10 20:58:21 UTC) #48
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/240001
6 years, 9 months ago (2014-03-10 21:53:19 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/240001
6 years, 9 months ago (2014-03-10 22:39:53 UTC) #50
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/240001
6 years, 9 months ago (2014-03-10 23:51:09 UTC) #51
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-11 03:31:34 UTC) #52
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-11 03:31:35 UTC) #53
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-11 05:02:20 UTC) #54
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/240001
6 years, 9 months ago (2014-03-11 05:04:25 UTC) #55
kinuko
Linking libcontent.so keeps failing due to 'Argument list too long' error... might be good to ...
6 years, 9 months ago (2014-03-11 05:16:47 UTC) #56
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-11 06:44:14 UTC) #57
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-11 06:44:15 UTC) #58
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-11 17:15:53 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/240001
6 years, 9 months ago (2014-03-11 17:21:32 UTC) #60
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-11 17:22:54 UTC) #61
commit-bot: I haz the power
Failed to apply patch for content/browser/service_worker/service_worker_version.h: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 9 months ago (2014-03-11 17:22:57 UTC) #62
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-11 17:54:23 UTC) #63
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/260001
6 years, 9 months ago (2014-03-11 17:59:04 UTC) #64
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-11 18:57:07 UTC) #65
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-11 18:57:12 UTC) #66
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-11 19:28:58 UTC) #67
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/260001
6 years, 9 months ago (2014-03-11 19:47:11 UTC) #68
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-11 22:30:37 UTC) #69
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-11 22:30:39 UTC) #70
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-11 22:34:40 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/260001
6 years, 9 months ago (2014-03-11 22:49:01 UTC) #72
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-12 02:31:23 UTC) #73
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-12 02:31:25 UTC) #74
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-12 03:55:12 UTC) #75
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/260001
6 years, 9 months ago (2014-03-12 04:00:00 UTC) #76
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-12 06:56:12 UTC) #77
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-12 06:56:14 UTC) #78
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-12 16:25:13 UTC) #79
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/260001
6 years, 9 months ago (2014-03-12 16:25:37 UTC) #80
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/260001
6 years, 9 months ago (2014-03-12 17:03:29 UTC) #81
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-12 17:46:11 UTC) #82
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-12 17:46:13 UTC) #83
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-13 16:02:00 UTC) #84
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/260001
6 years, 9 months ago (2014-03-13 16:02:14 UTC) #85
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-13 16:11:54 UTC) #86
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_chromeos_clang_dbg
6 years, 9 months ago (2014-03-13 16:11:56 UTC) #87
alecflett
The CQ bit was checked by alecflett@chromium.org
6 years, 9 months ago (2014-03-13 16:31:03 UTC) #88
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/alecflett@chromium.org/182383008/260001
6 years, 9 months ago (2014-03-13 16:31:41 UTC) #89
commit-bot: I haz the power
6 years, 9 months ago (2014-03-13 17:12:47 UTC) #90
Message was sent while issue was closed.
Change committed as 256858

Powered by Google App Engine
This is Rietveld 408576698