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

Issue 271733008: telemetry: add screenshot measurement (Closed)

Created:
6 years, 7 months ago by ernstm
Modified:
6 years, 6 months ago
Reviewers:
nduca, tonyg
CC:
chromium-reviews, telemetry+watch_chromium.org, rmistry1, Vangelis Kokkevis
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 2

Patch Set 2 : Remove timers from measurement. #

Patch Set 3 : Add action_name_to_run_to_prepare #

Total comments: 3

Patch Set 4 : Make action_name_to_run optional. #

Total comments: 2

Patch Set 5 : Add docstring for is_action_name_to_run_optional. #

Patch Set 6 : Handle browsers/platforms that don't support screenshotting. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+73 lines, -17 lines) Patch
A tools/perf/measurements/screenshot.py View 1 2 3 4 5 1 chunk +48 lines, -0 lines 0 comments Download
A + tools/perf/measurements/screenshot_unittest.py View 1 2 3 4 5 1 chunk +12 lines, -13 lines 0 comments Download
M tools/telemetry/telemetry/page/page_measurement.py View 1 2 3 4 1 chunk +9 lines, -2 lines 0 comments Download
M tools/telemetry/telemetry/page/page_test.py View 1 2 3 3 chunks +4 lines, -2 lines 0 comments Download

Messages

Total messages: 37 (0 generated)
ernstm
PTAL
6 years, 7 months ago (2014-05-13 23:39:26 UTC) #1
ernstm
On 2014/05/13 23:39:26, ernstm wrote: > PTAL Ping
6 years, 7 months ago (2014-05-20 18:30:45 UTC) #2
tonyg
Nat is probably a better reviewer than me for this. He has a lot of ...
6 years, 7 months ago (2014-05-21 09:36:56 UTC) #3
ernstm
https://codereview.chromium.org/271733008/diff/1/tools/perf/measurements/screenshot.py File tools/perf/measurements/screenshot.py (right): https://codereview.chromium.org/271733008/diff/1/tools/perf/measurements/screenshot.py#newcode32 tools/perf/measurements/screenshot.py:32: time.sleep(self.options.screenshot_delay) On 2014/05/21 09:36:57, tonyg wrote: > This seems ...
6 years, 7 months ago (2014-05-22 17:48:01 UTC) #4
ernstm
Nat, could you please review this CL?
6 years, 7 months ago (2014-05-27 18:12:13 UTC) #5
nduca
The ratio of "this is urgent but not architecturally rationalized" patches is getting a bit ...
6 years, 6 months ago (2014-05-29 16:12:38 UTC) #6
ernstm
On 2014/05/29 16:12:38, nduca wrote: > The ratio of "this is urgent but not architecturally ...
6 years, 6 months ago (2014-05-29 19:47:27 UTC) #7
ernstm
Per offline discussion with Nat, I added action_name_to_run_to_prepare (better name?) to PageTest, which is an ...
6 years, 6 months ago (2014-06-03 00:45:14 UTC) #8
nduca
https://codereview.chromium.org/271733008/diff/30001/tools/telemetry/telemetry/page/page_test.py File tools/telemetry/telemetry/page/page_test.py (right): https://codereview.chromium.org/271733008/diff/30001/tools/telemetry/telemetry/page/page_test.py#newcode41 tools/telemetry/telemetry/page/page_test.py:41: action_name_to_run_to_prepare=''): why this than making the action_name_to_run optional? the ...
6 years, 6 months ago (2014-06-06 16:00:40 UTC) #9
ernstm
https://codereview.chromium.org/271733008/diff/30001/tools/telemetry/telemetry/page/page_test.py File tools/telemetry/telemetry/page/page_test.py (right): https://codereview.chromium.org/271733008/diff/30001/tools/telemetry/telemetry/page/page_test.py#newcode41 tools/telemetry/telemetry/page/page_test.py:41: action_name_to_run_to_prepare=''): On 2014/06/06 16:00:40, nduca wrote: > why this ...
6 years, 6 months ago (2014-06-06 17:26:57 UTC) #10
ernstm
https://codereview.chromium.org/271733008/diff/30001/tools/telemetry/telemetry/page/page_test.py File tools/telemetry/telemetry/page/page_test.py (right): https://codereview.chromium.org/271733008/diff/30001/tools/telemetry/telemetry/page/page_test.py#newcode41 tools/telemetry/telemetry/page/page_test.py:41: action_name_to_run_to_prepare=''): On 2014/06/06 17:26:57, ernstm wrote: > On 2014/06/06 ...
6 years, 6 months ago (2014-06-06 18:06:40 UTC) #11
nduca
lgtm @nednguyen, this is yet another example of a test producing an artefact that should ...
6 years, 6 months ago (2014-06-09 20:23:26 UTC) #12
nednguyen
On 2014/06/09 20:23:26, nduca wrote: > lgtm > > @nednguyen, this is yet another example ...
6 years, 6 months ago (2014-06-09 20:33:41 UTC) #13
ernstm
> Why do we need a whole measurement just to be able to take screenshot? ...
6 years, 6 months ago (2014-06-09 20:47:27 UTC) #14
nednguyen
On 2014/06/09 20:47:27, ernstm wrote: > > Why do we need a whole measurement just ...
6 years, 6 months ago (2014-06-09 21:02:39 UTC) #15
ernstm
On 2014/06/09 21:02:39, nednguyen wrote: > On 2014/06/09 20:47:27, ernstm wrote: > > > Why ...
6 years, 6 months ago (2014-06-09 21:52:54 UTC) #16
ernstm
https://codereview.chromium.org/271733008/diff/50001/tools/telemetry/telemetry/page/page_measurement.py File tools/telemetry/telemetry/page/page_measurement.py (right): https://codereview.chromium.org/271733008/diff/50001/tools/telemetry/telemetry/page/page_measurement.py#newcode39 tools/telemetry/telemetry/page/page_measurement.py:39: def __init__(self, On 2014/06/09 20:23:26, nduca wrote: > can ...
6 years, 6 months ago (2014-06-09 22:59:28 UTC) #17
ernstm
Per offline discussion with Ned, there is no obvious way how to implement this differently ...
6 years, 6 months ago (2014-06-10 17:47:14 UTC) #18
ernstm
The CQ bit was checked by ernstm@chromium.org
6 years, 6 months ago (2014-06-10 17:47:18 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ernstm@chromium.org/271733008/70001
6 years, 6 months ago (2014-06-10 17:52:11 UTC) #20
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_chromium_rel on tryserver.chromium ...
6 years, 6 months ago (2014-06-11 02:32:10 UTC) #21
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-11 02:54:11 UTC) #22
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/linux_chromium_rel/builds/40489)
6 years, 6 months ago (2014-06-11 02:54:12 UTC) #23
ernstm
The CQ bit was checked by ernstm@chromium.org
6 years, 6 months ago (2014-06-11 18:07:52 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ernstm@chromium.org/271733008/90001
6 years, 6 months ago (2014-06-11 18:10:05 UTC) #25
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: ios_dbg_simulator on tryserver.chromium ...
6 years, 6 months ago (2014-06-11 21:30:32 UTC) #26
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-11 21:33:55 UTC) #27
commit-bot: I haz the power
Try jobs failed on following builders: ios_dbg_simulator on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/ios_dbg_simulator/builds/160346) mac_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/mac_chromium_rel/builds/38011) win_chromium_rel ...
6 years, 6 months ago (2014-06-11 21:33:56 UTC) #28
ernstm
The CQ bit was checked by ernstm@chromium.org
6 years, 6 months ago (2014-06-11 23:24:30 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ernstm@chromium.org/271733008/90001
6 years, 6 months ago (2014-06-11 23:25:32 UTC) #30
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: ios_dbg_simulator on tryserver.chromium ...
6 years, 6 months ago (2014-06-12 00:06:53 UTC) #31
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-12 00:10:24 UTC) #32
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/mac_chromium_rel/builds/38175)
6 years, 6 months ago (2014-06-12 00:10:25 UTC) #33
ernstm
The CQ bit was checked by ernstm@chromium.org
6 years, 6 months ago (2014-06-12 01:08:44 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ernstm@chromium.org/271733008/90001
6 years, 6 months ago (2014-06-12 01:10:23 UTC) #35
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: ios_dbg_simulator on tryserver.chromium ...
6 years, 6 months ago (2014-06-12 10:28:09 UTC) #36
commit-bot: I haz the power
6 years, 6 months ago (2014-06-12 11:05:01 UTC) #37
Message was sent while issue was closed.
Change committed as 276623

Powered by Google App Engine
This is Rietveld 408576698