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

Issue 1179223002: Implement autoplay gesture override experiment. (Closed)

Created:
5 years, 6 months ago by liberato (no reviews please)
Modified:
5 years, 3 months ago
CC:
ojan, blink-reviews, blink-reviews-html_chromium.org, dglazkov+blink, eric.carlson_apple.com, feature-media-reviews_chromium.org, fs, gasubic, mlamouri (slow - plz ping), MikeB, Rick Byers, pangu, nessy, vcarbune.chromium
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Implement autoplay gesture override experiment. If the value of the autoplayExperimentMode setting is "enabled", then we don't require a user gesture to initiate autoplay. If one includes "-ifmobile", then we additionally require that the page is optimized for mobile (i.e., sets the viewport). If one includes "-ifmuted", then we additionally require that the media is muted or doesn't have an audio track. If one includes "-playmuted", then we will autoplay after muting the audio (if any), once any other conditions have been met. This behavior affects both attribute-based autoplay and JS calls (e.g., play()/pause() ). BUG=487345, 402044 Committed: https://crrev.com/0ad5bea84a7d3978c9e53e8a97b65b052307a00a git-svn-id: svn://svn.chromium.org/blink/trunk@202204 bbb929c8-8fbe-4397-9dbb-9b2b20218538

Patch Set 1 #

Patch Set 2 : Fixed typo. #

Patch Set 3 : Another typo. #

Patch Set 4 : Removed testing flag that breaks tests. #

Patch Set 5 : Added unit tests, restructured. #

Patch Set 6 : Rebased. #

Patch Set 7 : addressed TODOs #

Patch Set 8 : Fixed visibility test. #

Patch Set 9 : factored out some common code. #

Patch Set 10 : removed WebRuntimeFeatures.h whitespace-only change. #

Total comments: 6

Patch Set 11 : CL feedback, removed scroll listener. #

Patch Set 12 : Rebased. #

Total comments: 1

Patch Set 13 : removed two redundant metrics, added metric for play() failed, changed param parsing. #

Patch Set 14 : Updated test, removed some test hooks. #

Patch Set 15 : removed TODO that was already done. #

Total comments: 35

Patch Set 16 : CL feedback -- check scroll events, rekerfuddled the metrics a bit. #

Total comments: 4

Patch Set 17 : fixed comments and names. #

Total comments: 17

Patch Set 18 : changed 'any play started' metric to catch autoplay too. #

Patch Set 19 : Refactored into AutoplayExperimentHelper. #

Total comments: 41

Patch Set 20 : used layout-based visibility checking, removed string config parameters, misc cl feedback. #

Patch Set 21 : git cl try #

Patch Set 22 : rebased, removed enums. #

Patch Set 23 : fixed include #

Patch Set 24 : more includes on non-linux. #

Patch Set 25 : linker errors on win/mac... #

Total comments: 42

Patch Set 26 : ...now without viewport / visibility checks. #

Patch Set 27 : fixed !autoplaying behavior + test. #

Total comments: 41

Patch Set 28 : CL feedback. #

Total comments: 2

Patch Set 29 : applied changes that were uploaded on another CL #

Total comments: 4

Patch Set 30 : cl comments, rebased. #

Patch Set 31 : rebased. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+871 lines, -47 lines) Patch
A LayoutTests/media/video-autoplay-experiment-just-once.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +48 lines, -0 lines 0 comments Download
A LayoutTests/media/video-autoplay-experiment-just-once-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +5 lines, -0 lines 0 comments Download
A LayoutTests/media/video-autoplay-experiment-modes.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +247 lines, -0 lines 0 comments Download
A LayoutTests/media/video-autoplay-experiment-modes-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +64 lines, -0 lines 0 comments Download
M Source/core/core.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +4 lines, -0 lines 0 comments Download
M Source/core/frame/Settings.in View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +3 lines, -0 lines 0 comments Download
A Source/core/html/AutoplayExperimentConfig.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +50 lines, -0 lines 0 comments Download
A Source/core/html/AutoplayExperimentConfig.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +29 lines, -0 lines 0 comments Download
A Source/core/html/AutoplayExperimentHelper.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +123 lines, -0 lines 0 comments Download
A Source/core/html/AutoplayExperimentHelper.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +180 lines, -0 lines 0 comments Download
M Source/core/html/HTMLMediaElement.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 7 chunks +22 lines, -2 lines 0 comments Download
M Source/core/html/HTMLMediaElement.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 16 chunks +89 lines, -45 lines 0 comments Download
M Source/web/WebSettingsImpl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -0 lines 0 comments Download
M Source/web/WebSettingsImpl.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +5 lines, -0 lines 0 comments Download
M public/web/WebSettings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 74 (14 generated)
liberato (no reviews please)
Hi all This cl provides support for an experiment on the impact of relaxing the ...
5 years, 5 months ago (2015-07-17 21:18:29 UTC) #2
philipj_slow
http://code.google.com/p/chromium/issues/detail?id=487345 is 403, but I've taken a brief look. I'm a bit skeptical of any ...
5 years, 5 months ago (2015-07-21 12:51:30 UTC) #3
philipj_slow
I should also say that I think we should strive to have the final behavior ...
5 years, 5 months ago (2015-07-21 12:57:22 UTC) #4
pangu
> On Jul 21, 2015, at 5:51 AM, philipj@opera.com wrote: > > http://code.google.com/p/chromium/issues/detail?id=487345 is 403, ...
5 years, 5 months ago (2015-07-21 15:45:06 UTC) #5
pangu
+1. That’s the idea. :) — Pangu > On Jul 21, 2015, at 5:57 AM, ...
5 years, 5 months ago (2015-07-21 15:45:16 UTC) #6
philipj_slow
On 2015/07/21 15:45:06, pangu wrote: > > On Jul 21, 2015, at 5:51 AM, mailto:philipj@opera.com ...
5 years, 5 months ago (2015-07-22 07:49:28 UTC) #7
philipj_slow
On 2015/07/22 07:49:28, philipj wrote: > A behavior that depends on what is visible seems ...
5 years, 5 months ago (2015-07-22 07:50:26 UTC) #8
DaleCurtis
Can you add issue 402044 to the bug listing here? I think it's more relevant.
5 years, 5 months ago (2015-07-24 17:06:45 UTC) #9
liberato (no reviews please)
On 2015/07/24 17:06:45, DaleCurtis wrote: > Can you add issue 402044 to the bug listing ...
5 years, 5 months ago (2015-07-24 17:13:05 UTC) #10
liberato (no reviews please)
biggest change in this version is the visibility check, to make sure that we don't ...
5 years, 5 months ago (2015-07-27 06:03:09 UTC) #11
philipj_slow
What's the best place to have the discussion about which behaviors we should investigate, i.e. ...
5 years, 5 months ago (2015-07-27 08:43:04 UTC) #12
liberato (no reviews please)
this adds the play() failed metric, and addresses all outstanding CL feedback.
5 years, 4 months ago (2015-08-05 06:17:38 UTC) #13
philipj_slow
OK, took a high-level view of things. The delayed play on scroll accounts for most ...
5 years, 4 months ago (2015-08-05 10:03:12 UTC) #14
philipj_slow
I'll be gone for the rest of the week, so I'd recommend grabbing a random ...
5 years, 4 months ago (2015-08-05 14:10:33 UTC) #16
Rick Byers
https://codereview.chromium.org/1179223002/diff/180001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1179223002/diff/180001/Source/core/html/HTMLMediaElement.cpp#newcode3799 Source/core/html/HTMLMediaElement.cpp:3799: document().domWindow()->addEventListener("scroll", m_autoplayExperimentScrollListener, false); On 2015/07/27 at 06:03:09, liberato wrote: ...
5 years, 4 months ago (2015-08-05 14:27:59 UTC) #17
Rick Byers
On 2015/08/05 at 14:27:59, Rick Byers wrote: > https://codereview.chromium.org/1179223002/diff/180001/Source/core/html/HTMLMediaElement.cpp > File Source/core/html/HTMLMediaElement.cpp (right): > > ...
5 years, 4 months ago (2015-08-05 14:30:10 UTC) #18
philipj_slow
https://codereview.chromium.org/1179223002/diff/180001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1179223002/diff/180001/Source/core/html/HTMLMediaElement.cpp#newcode3799 Source/core/html/HTMLMediaElement.cpp:3799: document().domWindow()->addEventListener("scroll", m_autoplayExperimentScrollListener, false); On 2015/08/05 14:27:59, Rick Byers wrote: ...
5 years, 4 months ago (2015-08-05 14:40:12 UTC) #19
Rick Byers
On 2015/08/05 14:40:12, philipj wrote: > https://codereview.chromium.org/1179223002/diff/180001/Source/core/html/HTMLMediaElement.cpp > File Source/core/html/HTMLMediaElement.cpp (right): > > https://codereview.chromium.org/1179223002/diff/180001/Source/core/html/HTMLMediaElement.cpp#newcode3799 > ...
5 years, 4 months ago (2015-08-06 04:03:15 UTC) #20
liberato (no reviews please)
this addresses previous CL feedback. https://codereview.chromium.org/1179223002/diff/280001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (left): https://codereview.chromium.org/1179223002/diff/280001/Source/core/html/HTMLMediaElement.cpp#oldcode378 Source/core/html/HTMLMediaElement.cpp:378: if (document.settings() && document.settings()->mediaPlaybackRequiresUserGesture()) ...
5 years, 4 months ago (2015-08-06 06:37:58 UTC) #21
liberato (no reviews please)
thanks, CR tool! now here's the message i was trying to type just a moment ...
5 years, 4 months ago (2015-08-06 06:40:02 UTC) #22
Rick Byers
https://codereview.chromium.org/1179223002/diff/280001/Source/core/html/HTMLMediaElement.h File Source/core/html/HTMLMediaElement.h (right): https://codereview.chromium.org/1179223002/diff/280001/Source/core/html/HTMLMediaElement.h#newcode460 Source/core/html/HTMLMediaElement.h:460: // Install an event listener to check for changes ...
5 years, 4 months ago (2015-08-06 15:04:26 UTC) #23
Rick Byers
https://codereview.chromium.org/1179223002/diff/300001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1179223002/diff/300001/Source/core/html/HTMLMediaElement.cpp#newcode3913 Source/core/html/HTMLMediaElement.cpp:3913: m_autoplayExperimentTouchListener = adoptRef(new AutoplayExperimentTouchListener(this)); nit: please change the names ...
5 years, 4 months ago (2015-08-06 15:07:49 UTC) #24
liberato (no reviews please)
rbyers: i'll get some opinions on the timeout before landing. adamk, Oystein: do either of ...
5 years, 4 months ago (2015-08-06 15:32:28 UTC) #25
liberato (no reviews please)
dglazkov: philipj is out of town, and suggested that someone replace him as a reviewer ...
5 years, 4 months ago (2015-08-06 18:27:52 UTC) #27
dglazkov
+ojan https://codereview.chromium.org/1179223002/diff/320001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1179223002/diff/320001/Source/core/html/HTMLMediaElement.cpp#newcode289 Source/core/html/HTMLMediaElement.cpp:289: class HTMLMediaElement::AutoplayExperimentScrollListener : public EventListener { Is this ...
5 years, 4 months ago (2015-08-06 20:55:23 UTC) #29
liberato (no reviews please)
https://codereview.chromium.org/1179223002/diff/320001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1179223002/diff/320001/Source/core/html/HTMLMediaElement.cpp#newcode3960 Source/core/html/HTMLMediaElement.cpp:3960: FloatRect us(offsetLeft(), offsetTop(), clientWidth(), clientHeight()); On 2015/08/06 20:55:23, dglazkov ...
5 years, 4 months ago (2015-08-07 14:33:16 UTC) #30
liberato (no reviews please)
haven't addressed all of the comments, but wanted to see if the refactor is in ...
5 years, 4 months ago (2015-08-07 21:53:17 UTC) #32
ojan
Here's some more code review feedback. Feel free to ping me on IM if you ...
5 years, 4 months ago (2015-08-11 02:45:21 UTC) #33
ojan
https://codereview.chromium.org/1179223002/diff/380001/Source/core/html/AutoplayExperimentHelper.cpp File Source/core/html/AutoplayExperimentHelper.cpp (right): https://codereview.chromium.org/1179223002/diff/380001/Source/core/html/AutoplayExperimentHelper.cpp#newcode76 Source/core/html/AutoplayExperimentHelper.cpp:76: const String& autoplayMode = document().settings()->autoplayExperimentMode(); On 2015/08/11 at 02:45:21, ...
5 years, 4 months ago (2015-08-11 02:49:35 UTC) #34
philipj_slow
https://codereview.chromium.org/1179223002/diff/280001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1179223002/diff/280001/Source/core/html/HTMLMediaElement.cpp#newcode2233 Source/core/html/HTMLMediaElement.cpp:2233: // playing, then start playing. In other words, start ...
5 years, 4 months ago (2015-08-13 09:27:53 UTC) #36
philipj_slow
https://codereview.chromium.org/1179223002/diff/380001/Source/core/html/AutoplayExperimentHelper.cpp File Source/core/html/AutoplayExperimentHelper.cpp (right): https://codereview.chromium.org/1179223002/diff/380001/Source/core/html/AutoplayExperimentHelper.cpp#newcode65 Source/core/html/AutoplayExperimentHelper.cpp:65: AutoplayExperimentHelper* m_helper; It looks like the pointer is always ...
5 years, 4 months ago (2015-08-13 10:15:40 UTC) #37
philipj_slow
https://codereview.chromium.org/1179223002/diff/380001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/1179223002/diff/380001/Source/core/html/HTMLMediaElement.cpp#newcode681 Source/core/html/HTMLMediaElement.cpp:681: void HTMLMediaElement::recordMetricsIfStopping() Since this AutoplayExperimentHelper is a friend class, ...
5 years, 4 months ago (2015-08-13 11:12:49 UTC) #38
philipj_slow
Ping! The branch point is today, and it would be really nice to get this ...
5 years, 4 months ago (2015-08-21 08:29:05 UTC) #39
liberato (no reviews please)
On 2015/08/21 08:29:05, philipj wrote: > Ping! The branch point is today, and it would ...
5 years, 4 months ago (2015-08-21 14:13:42 UTC) #40
liberato (no reviews please)
i'm still potentially chasing down a few linker errors on some platforms, but locally this ...
5 years, 3 months ago (2015-09-01 06:54:20 UTC) #41
liberato (no reviews please)
i'm still potentially chasing down a few linker errors on some platforms, but locally this ...
5 years, 3 months ago (2015-09-01 06:54:24 UTC) #42
ojan
I think the performance of this code will be good once we fix the timer ...
5 years, 3 months ago (2015-09-01 20:20:12 UTC) #44
philipj_slow
I have reviewed the core/html bits again. https://codereview.chromium.org/1179223002/diff/500001/Source/core/html/AutoplayExperimentConfig.h File Source/core/html/AutoplayExperimentConfig.h (right): https://codereview.chromium.org/1179223002/diff/500001/Source/core/html/AutoplayExperimentConfig.h#newcode8 Source/core/html/AutoplayExperimentConfig.h:8: #include "wtf/text/WTFString.h" ...
5 years, 3 months ago (2015-09-02 09:24:12 UTC) #45
philipj_slow
Following up on some older issues... https://codereview.chromium.org/1179223002/diff/380001/Source/core/html/AutoplayExperimentHelper.cpp File Source/core/html/AutoplayExperimentHelper.cpp (right): https://codereview.chromium.org/1179223002/diff/380001/Source/core/html/AutoplayExperimentHelper.cpp#newcode76 Source/core/html/AutoplayExperimentHelper.cpp:76: const String& autoplayMode ...
5 years, 3 months ago (2015-09-02 09:31:47 UTC) #46
philipj_slow
One very important issue left dangling, hopefully I'm just wrong but if I'm not then ...
5 years, 3 months ago (2015-09-02 09:35:37 UTC) #47
liberato (no reviews please)
On 2015/09/02 09:35:37, philipj wrote: > One very important issue left dangling, hopefully I'm just ...
5 years, 3 months ago (2015-09-02 18:14:01 UTC) #48
esprehn
This patch is massive, can we please do this in smaller steps?
5 years, 3 months ago (2015-09-02 21:02:41 UTC) #49
liberato (no reviews please)
On 2015/09/02 21:02:41, esprehn wrote: > This patch is massive, can we please do this ...
5 years, 3 months ago (2015-09-03 06:48:37 UTC) #50
philipj_slow
On 2015/09/02 18:14:01, liberato wrote: > On 2015/09/02 09:35:37, philipj wrote: > > One very ...
5 years, 3 months ago (2015-09-03 09:17:03 UTC) #51
liberato (no reviews please)
philipj: didn't get to the "m_paused" vs "m_playing" comment -- i don't have a device ...
5 years, 3 months ago (2015-09-04 06:49:46 UTC) #52
liberato (no reviews please)
philipj: didn't get to the "m_paused" vs "m_playing" comment -- i don't have a device ...
5 years, 3 months ago (2015-09-04 06:49:50 UTC) #53
philipj_slow
https://codereview.chromium.org/1179223002/diff/500001/Source/core/html/AutoplayExperimentHelper.cpp File Source/core/html/AutoplayExperimentHelper.cpp (right): https://codereview.chromium.org/1179223002/diff/500001/Source/core/html/AutoplayExperimentHelper.cpp#newcode124 Source/core/html/AutoplayExperimentHelper.cpp:124: // TODO(liberato): do we really need to keep track ...
5 years, 3 months ago (2015-09-04 08:42:30 UTC) #54
philipj_slow
https://codereview.chromium.org/1179223002/diff/380001/Source/core/html/AutoplayExperimentHelper.cpp File Source/core/html/AutoplayExperimentHelper.cpp (right): https://codereview.chromium.org/1179223002/diff/380001/Source/core/html/AutoplayExperimentHelper.cpp#newcode76 Source/core/html/AutoplayExperimentHelper.cpp:76: const String& autoplayMode = document().settings()->autoplayExperimentMode(); On 2015/09/02 09:31:47, philipj ...
5 years, 3 months ago (2015-09-04 08:44:09 UTC) #55
philipj_slow
Sourcec/core/html and tests LGTM with a bunch of minor test nits and a suggestion for ...
5 years, 3 months ago (2015-09-04 09:24:27 UTC) #56
liberato (no reviews please)
cleaned up tests, added -ifmobile test, shouldAutoplay() based on CL feedback. also changed handling of ...
5 years, 3 months ago (2015-09-08 21:58:02 UTC) #58
philipj_slow
https://codereview.chromium.org/1179223002/diff/540001/LayoutTests/media/video-autoplay-experiment-just-once.html File LayoutTests/media/video-autoplay-experiment-just-once.html (right): https://codereview.chromium.org/1179223002/diff/540001/LayoutTests/media/video-autoplay-experiment-just-once.html#newcode5 LayoutTests/media/video-autoplay-experiment-just-once.html:5: var mediaFile; On 2015/09/08 21:58:01, liberato wrote: > On ...
5 years, 3 months ago (2015-09-10 09:58:59 UTC) #59
philipj_slow
> also changed handling of mutedAttr (see AutoplayExperimentHelper.cpp:138). Not sure if this was also missed ...
5 years, 3 months ago (2015-09-10 10:05:13 UTC) #60
liberato (no reviews please)
moved some changes into this CL that were accidentally included in a dependent CL. sorry ...
5 years, 3 months ago (2015-09-10 14:52:28 UTC) #62
philipj_slow
Still LGTM with nits. Can someone take another look at the layout bits? https://codereview.chromium.org/1179223002/diff/620001/LayoutTests/media/video-autoplay-experiment-just-once.html File ...
5 years, 3 months ago (2015-09-11 07:17:48 UTC) #63
liberato (no reviews please)
https://codereview.chromium.org/1179223002/diff/620001/LayoutTests/media/video-autoplay-experiment-just-once.html File LayoutTests/media/video-autoplay-experiment-just-once.html (right): https://codereview.chromium.org/1179223002/diff/620001/LayoutTests/media/video-autoplay-experiment-just-once.html#newcode22 LayoutTests/media/video-autoplay-experiment-just-once.html:22: var mediaFile = findMediaFile("video", "content/test"); On 2015/09/11 07:17:47, philipj ...
5 years, 3 months ago (2015-09-11 19:01:43 UTC) #64
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1179223002/640001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1179223002/640001
5 years, 3 months ago (2015-09-11 19:02:01 UTC) #67
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/111902)
5 years, 3 months ago (2015-09-11 19:16:45 UTC) #69
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1179223002/660001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1179223002/660001
5 years, 3 months ago (2015-09-14 14:58:12 UTC) #72
commit-bot: I haz the power
Committed patchset #31 (id:660001) as https://src.chromium.org/viewvc/blink?view=rev&revision=202204
5 years, 3 months ago (2015-09-14 16:12:46 UTC) #73
commit-bot: I haz the power
5 years, 3 months ago (2015-09-23 12:32:42 UTC) #74
Message was sent while issue was closed.
Patchset 31 (id:??) landed as
https://crrev.com/0ad5bea84a7d3978c9e53e8a97b65b052307a00a

Powered by Google App Engine
This is Rietveld 408576698