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

Issue 26536002: chrome://crashes: add a link on CrOS for triggering crash uploading (Closed)

Created:
7 years, 2 months ago by vapier
Modified:
6 years, 8 months ago
CC:
chromium-reviews, stevenjb+watch_chromium.org, arv+watch_chromium.org, oshima+watch_chromium.org
Visibility:
Public.

Description

chrome://crashes: add a link on CrOS for triggering crash uploading The CrOS crash page is not clear in terms of when crashes will be uploaded. Add a link so people can click to automatically trigger the system. BUG=chromium:210624 TEST=loaded on a new system, went to chrome://crashes, clicked new link and saw system crash reporter run Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=261068

Patch Set 1 #

Total comments: 6

Patch Set 2 : #

Total comments: 8

Patch Set 3 : tweak js as requested #

Total comments: 2

Patch Set 4 : switch link to a link-button #

Patch Set 5 : clean up js a bit more per previous reviews #

Patch Set 6 : delete debug code #

Total comments: 6

Patch Set 7 : address patchset 5 feedback #

Patch Set 8 : tweak handling of dummy dbus client #

Total comments: 2

Patch Set 9 : delete excess newline #

Unified diffs Side-by-side diffs Delta from patch set Stats (+89 lines, -8 lines) Patch
M chrome/app/generated_resources.grd View 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/resources/crashes.html View 1 2 3 2 chunks +5 lines, -0 lines 0 comments Download
M chrome/browser/resources/crashes.js View 1 2 3 4 5 6 4 chunks +23 lines, -2 lines 0 comments Download
M chrome/browser/ui/webui/crashes_ui.cc View 1 2 3 4 5 6 7 8 7 chunks +37 lines, -2 lines 0 comments Download
M chromeos/dbus/debug_daemon_client.h View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M chromeos/dbus/debug_daemon_client.cc View 1 2 3 chunks +14 lines, -4 lines 0 comments Download
M chromeos/dbus/fake_debug_daemon_client.h View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M chromeos/dbus/fake_debug_daemon_client.cc View 1 2 3 4 5 6 7 1 chunk +3 lines, -0 lines 0 comments Download

Messages

Total messages: 28 (0 generated)
vapier
7 years, 2 months ago (2013-10-08 17:50:55 UTC) #1
Lei Zhang
https://codereview.chromium.org/26536002/diff/1/chrome/app/generated_resources.grd File chrome/app/generated_resources.grd (right): https://codereview.chromium.org/26536002/diff/1/chrome/app/generated_resources.grd#newcode6813 chrome/app/generated_resources.grd:6813: + Start Uploading Crashes Start uploading crashes ? https://codereview.chromium.org/26536002/diff/1/chrome/browser/resources/crashes.js ...
7 years, 2 months ago (2013-10-08 18:05:07 UTC) #2
vapier
https://codereview.chromium.org/26536002/diff/1/chrome/app/generated_resources.grd File chrome/app/generated_resources.grd (right): https://codereview.chromium.org/26536002/diff/1/chrome/app/generated_resources.grd#newcode6813 chrome/app/generated_resources.grd:6813: + Start Uploading Crashes Done. https://codereview.chromium.org/26536002/diff/1/chrome/browser/resources/crashes.js File chrome/browser/resources/crashes.js (right): ...
7 years, 2 months ago (2013-10-08 18:10:15 UTC) #3
zel
...delegating my part to xiyuan@
7 years, 2 months ago (2013-10-08 20:00:17 UTC) #4
Lei Zhang
https://codereview.chromium.org/26536002/diff/4001/chrome/browser/resources/crashes.html File chrome/browser/resources/crashes.html (right): https://codereview.chromium.org/26536002/diff/4001/chrome/browser/resources/crashes.html#newcode15 chrome/browser/resources/crashes.html:15: <a id="uploadCrashesLink" href="#upload_crashes"><span i18n-content="uploadCrashesLinkText"></span></a> Probably should be a <button> ...
7 years, 2 months ago (2013-10-08 20:08:57 UTC) #5
vapier
https://codereview.chromium.org/26536002/diff/4001/chrome/browser/resources/crashes.html File chrome/browser/resources/crashes.html (right): https://codereview.chromium.org/26536002/diff/4001/chrome/browser/resources/crashes.html#newcode15 chrome/browser/resources/crashes.html:15: <a id="uploadCrashesLink" href="#upload_crashes"><span i18n-content="uploadCrashesLinkText"></span></a> it is a valid <a>, ...
7 years, 2 months ago (2013-10-08 20:16:24 UTC) #6
xiyuan
https://codereview.chromium.org/26536002/diff/4001/chrome/browser/resources/crashes.js File chrome/browser/resources/crashes.js (right): https://codereview.chromium.org/26536002/diff/4001/chrome/browser/resources/crashes.js#newcode97 chrome/browser/resources/crashes.js:97: refreshCrashListId = setInterval(requestCrashes, 5000); Since requestCrashes clears the interval, ...
7 years, 2 months ago (2013-10-08 20:20:10 UTC) #7
vapier
https://codereview.chromium.org/26536002/diff/4001/chrome/browser/resources/crashes.js File chrome/browser/resources/crashes.js (right): https://codereview.chromium.org/26536002/diff/4001/chrome/browser/resources/crashes.js#newcode97 chrome/browser/resources/crashes.js:97: refreshCrashListId = setInterval(requestCrashes, 5000); Done
6 years, 9 months ago (2014-03-25 20:49:07 UTC) #8
Lei Zhang
On 2014/03/25 20:49:07, vapier wrote: > https://codereview.chromium.org/26536002/diff/4001/chrome/browser/resources/crashes.js > File chrome/browser/resources/crashes.js (right): > > https://codereview.chromium.org/26536002/diff/4001/chrome/browser/resources/crashes.js#newcode97 > ...
6 years, 9 months ago (2014-03-25 20:54:54 UTC) #9
vapier
that's why patchset 3 is here now :)
6 years, 9 months ago (2014-03-25 21:03:27 UTC) #10
vapier
PTAL -- patchset 5 should address everybody's feedback thus far
6 years, 9 months ago (2014-03-25 21:20:44 UTC) #11
xiyuan
https://codereview.chromium.org/26536002/diff/95002/chrome/browser/resources/crashes.js File chrome/browser/resources/crashes.js (right): https://codereview.chromium.org/26536002/diff/95002/chrome/browser/resources/crashes.js#newcode22 chrome/browser/resources/crashes.js:22: function updateCrashList(enabled, dynamic_backend, crashes, version) { dynamic_backend -> dynamicBackend ...
6 years, 9 months ago (2014-03-25 21:30:58 UTC) #12
vapier
https://codereview.chromium.org/26536002/diff/95002/chrome/browser/resources/crashes.js File chrome/browser/resources/crashes.js (right): https://codereview.chromium.org/26536002/diff/95002/chrome/browser/resources/crashes.js#newcode22 chrome/browser/resources/crashes.js:22: function updateCrashList(enabled, dynamic_backend, crashes, version) { Done. https://codereview.chromium.org/26536002/diff/95002/chrome/browser/resources/crashes.js#newcode32 chrome/browser/resources/crashes.js:32: ...
6 years, 9 months ago (2014-03-25 21:35:45 UTC) #13
Lei Zhang
https://codereview.chromium.org/26536002/diff/55001/chromeos/dbus/fake_debug_daemon_client.h File chromeos/dbus/fake_debug_daemon_client.h (right): https://codereview.chromium.org/26536002/diff/55001/chromeos/dbus/fake_debug_daemon_client.h#newcode49 chromeos/dbus/fake_debug_daemon_client.h:49: virtual void UploadCrashes() OVERRIDE {} nit: move the empty ...
6 years, 9 months ago (2014-03-25 21:50:10 UTC) #14
vapier
afaik, the latest patchset addresses all concerns raised https://codereview.chromium.org/26536002/diff/55001/chromeos/dbus/fake_debug_daemon_client.h File chromeos/dbus/fake_debug_daemon_client.h (right): https://codereview.chromium.org/26536002/diff/55001/chromeos/dbus/fake_debug_daemon_client.h#newcode49 chromeos/dbus/fake_debug_daemon_client.h:49: virtual ...
6 years, 8 months ago (2014-03-31 20:25:22 UTC) #15
xiyuan
lgtm https://codereview.chromium.org/26536002/diff/275001/chrome/browser/ui/webui/crashes_ui.cc File chrome/browser/ui/webui/crashes_ui.cc (right): https://codereview.chromium.org/26536002/diff/275001/chrome/browser/ui/webui/crashes_ui.cc#newcode162 chrome/browser/ui/webui/crashes_ui.cc:162: nit: keep only one empty line
6 years, 8 months ago (2014-03-31 20:29:17 UTC) #16
Lei Zhang
chrome/ lgtm
6 years, 8 months ago (2014-03-31 20:40:51 UTC) #17
vapier
https://codereview.chromium.org/26536002/diff/275001/chrome/browser/ui/webui/crashes_ui.cc File chrome/browser/ui/webui/crashes_ui.cc (right): https://codereview.chromium.org/26536002/diff/275001/chrome/browser/ui/webui/crashes_ui.cc#newcode162 chrome/browser/ui/webui/crashes_ui.cc:162: Done.
6 years, 8 months ago (2014-03-31 21:53:28 UTC) #18
vapier
The CQ bit was checked by vapier@chromium.org
6 years, 8 months ago (2014-03-31 21:53:31 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/vapier@chromium.org/26536002/295001
6 years, 8 months ago (2014-03-31 21:54:48 UTC) #20
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-03-31 22:27:25 UTC) #21
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=58676
6 years, 8 months ago (2014-03-31 22:27:26 UTC) #22
vapier
+derat for chromeos/ approval
6 years, 8 months ago (2014-04-01 22:02:45 UTC) #23
Daniel Erat
lgtm for chromeos/
6 years, 8 months ago (2014-04-01 22:06:25 UTC) #24
vapier
The CQ bit was checked by vapier@chromium.org
6 years, 8 months ago (2014-04-01 22:16:50 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/vapier@chromium.org/26536002/295001
6 years, 8 months ago (2014-04-01 22:31:31 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/vapier@chromium.org/26536002/295001
6 years, 8 months ago (2014-04-02 02:02:36 UTC) #27
commit-bot: I haz the power
6 years, 8 months ago (2014-04-02 04:21:55 UTC) #28
Message was sent while issue was closed.
Change committed as 261068

Powered by Google App Engine
This is Rietveld 408576698