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

Issue 1806253002: Added Web Share (navigator.share) experimental web API (stub). (Closed)

Created:
4 years, 9 months ago by Matt Giuca
Modified:
4 years, 5 months ago
CC:
Aaron Boodman, abarth-chromium, ben+mojo_chromium.org, blink-reviews, chrome-apps-syd-reviews_chromium.org, chromium-reviews, creis+watch_chromium.org, darin (slow to review), darin-cc_chromium.org, jam, kinuko+watch, nasko+codewatch_chromium.org, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Added Web Share (navigator.share) experimental web API (stub). Requires the enable-experimental-web-platform-features flag. Currently does nothing; future CLs will implement this on Android as an experiment. Re-land of r390004. BUG=595608 Committed: https://crrev.com/d123f9a4d82543ae3769094df5c4cac24cd2d693 Cr-Commit-Position: refs/heads/master@{#404759}

Patch Set 1 #

Total comments: 16

Patch Set 2 : Rebase. #

Patch Set 3 : Rebase. Everything is broken now. :( #

Patch Set 4 : Use RenderFrameProcess. #

Patch Set 5 : Fix a bunch of problems. #

Patch Set 6 : Remove browser side component (will go in follow up or just directly talk to Java). #

Patch Set 7 : Added layout test. #

Patch Set 8 : Split test into four separate files. #

Total comments: 24

Patch Set 9 : Rebase. #

Patch Set 10 : Respond to sammc review. #

Total comments: 2

Patch Set 11 : Rebase. #

Total comments: 13

Patch Set 12 : Fix copyright year. #

Patch Set 13 : Respond to suggestions, except for tests. #

Patch Set 14 : Rewrite tests in testharness.js. Some outstanding issues though. #

Patch Set 15 : Fix test mock service to correctly report failures. #

Total comments: 14

Patch Set 16 : Rebase & fix errors. #

Patch Set 17 : Test: Remove pendingRequests queue and runCallbacks_ method; just execute immediately. #

Patch Set 18 : Respond to sammc review. #

Patch Set 19 : Update global-interface-listing expectation. #

Total comments: 7

Patch Set 20 : Rebase. #

Patch Set 21 : Rebase (compile broken). #

Patch Set 22 : Fix compile. #

Patch Set 23 : Remove navigator.actions and directly expose navigator.share. #

Patch Set 24 : Rebase. #

Patch Set 25 : Update IDL file comments. #

Patch Set 26 : Rename runtime enabled flag from Ballista to WebShare. #

Patch Set 27 : Giant rename: Ballista -> WebShare, Actions -> Share. #

Patch Set 28 : Remove #include config.h (fix compile). #

Patch Set 29 : Fix OWNERS. #

Patch Set 30 : Rebase. #

Total comments: 4

Patch Set 31 : Rebase. #

Patch Set 32 : Fix compile (due to rebase). #

Patch Set 33 : Add argument names. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+330 lines, -0 lines) Patch
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-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 29 30 1 chunk +1 line, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/webshare/resources/mock-share-service.js 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 +66 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/webshare/share-arity.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 1 chunk +21 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/webshare/share-error.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 1 chunk +15 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/webshare/share-success.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 1 chunk +13 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/webshare/share-types.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 1 chunk +13 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/modules.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 30 2 chunks +3 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/webshare/NavigatorShare.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 30 31 32 1 chunk +50 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/webshare/NavigatorShare.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 30 31 1 chunk +107 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/webshare/NavigatorShare.idl 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 1 chunk +18 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/webshare/OWNERS 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 +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in 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 30 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/public/BUILD.gn 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 30 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/public/blink.gyp 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 30 1 chunk +1 line, -0 lines 0 comments Download
A third_party/WebKit/public/platform/modules/webshare/OWNERS 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 +7 lines, -0 lines 0 comments Download
A third_party/WebKit/public/platform/modules/webshare/webshare.mojom 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 +11 lines, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 102 (49 generated)
Matt Giuca
Hi Sam. I implemented, very hackily, the Blink side of this API. I know you ...
4 years, 9 months ago (2016-03-17 07:43:08 UTC) #3
Sam McNally
https://codereview.chromium.org/1806253002/diff/1/content/browser/ballista/ballista_service_impl.h File content/browser/ballista/ballista_service_impl.h (right): https://codereview.chromium.org/1806253002/diff/1/content/browser/ballista/ballista_service_impl.h#newcode1 content/browser/ballista/ballista_service_impl.h:1: // Copyright 2016 The Chromium Authors. All rights reserved. ...
4 years, 8 months ago (2016-04-01 02:51:25 UTC) #9
Matt Giuca
https://codereview.chromium.org/1806253002/diff/1/content/browser/ballista/ballista_service_impl.h File content/browser/ballista/ballista_service_impl.h (right): https://codereview.chromium.org/1806253002/diff/1/content/browser/ballista/ballista_service_impl.h#newcode1 content/browser/ballista/ballista_service_impl.h:1: // Copyright 2016 The Chromium Authors. All rights reserved. ...
4 years, 8 months ago (2016-04-12 06:12:21 UTC) #11
Matt Giuca
https://codereview.chromium.org/1806253002/diff/1/content/browser/ballista/ballista_service_impl.h File content/browser/ballista/ballista_service_impl.h (right): https://codereview.chromium.org/1806253002/diff/1/content/browser/ballista/ballista_service_impl.h#newcode1 content/browser/ballista/ballista_service_impl.h:1: // Copyright 2016 The Chromium Authors. All rights reserved. ...
4 years, 8 months ago (2016-04-12 07:41:12 UTC) #14
Matt Giuca
sammc: PTAL. Tests using the old framework. Let me know what you think (whether I ...
4 years, 8 months ago (2016-04-13 03:29:55 UTC) #16
Matt Giuca
OK split tests into four separate HTML files. PTAL.
4 years, 8 months ago (2016-04-13 03:47:28 UTC) #17
Sam McNally
https://codereview.chromium.org/1806253002/diff/200001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js File third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js (right): https://codereview.chromium.org/1806253002/diff/200001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js#newcode6 third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js:6: var expectTitle; expectedTitle https://codereview.chromium.org/1806253002/diff/200001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js#newcode7 third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js:7: var expectText; expectedText https://codereview.chromium.org/1806253002/diff/200001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js#newcode11 ...
4 years, 8 months ago (2016-04-13 04:32:35 UTC) #18
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1806253002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1806253002/200001
4 years, 8 months ago (2016-04-13 04:44:30 UTC) #20
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/158674) ios_rel_device_gn on ...
4 years, 8 months ago (2016-04-13 04:46:20 UTC) #22
Matt Giuca
https://codereview.chromium.org/1806253002/diff/1/third_party/WebKit/Source/modules/ballista/NavigatorActions.idl File third_party/WebKit/Source/modules/ballista/NavigatorActions.idl (right): https://codereview.chromium.org/1806253002/diff/1/third_party/WebKit/Source/modules/ballista/NavigatorActions.idl#newcode10 third_party/WebKit/Source/modules/ballista/NavigatorActions.idl:10: readonly attribute Actions actions; On 2016/04/12 06:12:21, Matt Giuca ...
4 years, 8 months ago (2016-04-13 05:43:02 UTC) #23
Sam McNally
https://codereview.chromium.org/1806253002/diff/240001/third_party/WebKit/LayoutTests/ballista/share-arity-expected.txt File third_party/WebKit/LayoutTests/ballista/share-arity-expected.txt (right): https://codereview.chromium.org/1806253002/diff/240001/third_party/WebKit/LayoutTests/ballista/share-arity-expected.txt#newcode7 third_party/WebKit/LayoutTests/ballista/share-arity-expected.txt:7: share failed: TypeError: Failed to execute 'share' on 'Actions': ...
4 years, 8 months ago (2016-04-15 06:41:40 UTC) #24
Matt Giuca
mkwst@: Please have a look or suggest alternative reviewers. Context: Initial experimental version of https://github.com/chromium/ballista ...
4 years, 8 months ago (2016-04-15 06:46:33 UTC) #26
Mike West
I added some comments. Please also add an OWNERS file for the new module. :) ...
4 years, 8 months ago (2016-04-18 11:16:19 UTC) #28
Mike West
Also: Have you sent an "Intent to Implement" to blink-dev? If so, please add a ...
4 years, 8 months ago (2016-04-18 11:17:20 UTC) #29
Matt Giuca
Hi Mike, thanks for the review. Added OWNERS. No Intent to Implement has been sent, ...
4 years, 8 months ago (2016-04-22 06:14:02 UTC) #31
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1806253002/380001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1806253002/380001
4 years, 8 months ago (2016-04-22 07:50:24 UTC) #33
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios_dbg_simulator_gn on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_gn/builds/23476) ios_dbg_simulator_ninja on ...
4 years, 8 months ago (2016-04-22 07:52:35 UTC) #35
Matt Giuca
https://codereview.chromium.org/1806253002/diff/380001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js File third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js (right): https://codereview.chromium.org/1806253002/diff/380001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js#newcode45 third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js:45: while (this.pendingRequests_.length) { I forgot to simplify this logic: ...
4 years, 8 months ago (2016-04-23 01:19:32 UTC) #36
Mike West
Looks like you need to rebase. Otherwise LGTM. Please send out the intent to implement ...
4 years, 8 months ago (2016-04-26 08:09:23 UTC) #37
Sam McNally
lgtm https://codereview.chromium.org/1806253002/diff/380001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js File third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js (right): https://codereview.chromium.org/1806253002/diff/380001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js#newcode72 third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js:72: function pushMockBallistaServiceResult(expectedTitle, expectedText, Remove this. https://codereview.chromium.org/1806253002/diff/380001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js#newcode80 third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js:80: function ...
4 years, 8 months ago (2016-04-26 08:31:22 UTC) #38
Matt Giuca
https://codereview.chromium.org/1806253002/diff/380001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js File third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js (right): https://codereview.chromium.org/1806253002/diff/380001/third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js#newcode45 third_party/WebKit/LayoutTests/ballista/resources/mock-ballista-service.js:45: while (this.pendingRequests_.length) { On 2016/04/23 01:19:32, Matt Giuca wrote: ...
4 years, 8 months ago (2016-04-26 09:14:07 UTC) #39
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1806253002/440001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1806253002/440001
4 years, 8 months ago (2016-04-26 09:14:45 UTC) #41
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/218777)
4 years, 8 months ago (2016-04-26 10:28:41 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1806253002/460001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1806253002/460001
4 years, 7 months ago (2016-04-27 02:43:44 UTC) #46
commit-bot: I haz the power
Try jobs failed on following builders: chromeos_x86-generic_chromium_compile_only_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromeos_x86-generic_chromium_compile_only_ng/builds/128342)
4 years, 7 months ago (2016-04-27 02:52:00 UTC) #48
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1806253002/460001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1806253002/460001
4 years, 7 months ago (2016-04-27 03:41:39 UTC) #50
commit-bot: I haz the power
Try jobs failed on following builders: chromeos_daisy_chromium_compile_only_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromeos_daisy_chromium_compile_only_ng/builds/128348)
4 years, 7 months ago (2016-04-27 03:59:52 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1806253002/460001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1806253002/460001
4 years, 7 months ago (2016-04-27 05:02:26 UTC) #54
commit-bot: I haz the power
Try jobs failed on following builders: chromeos_amd64-generic_chromium_compile_only_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromeos_amd64-generic_chromium_compile_only_ng/builds/128453)
4 years, 7 months ago (2016-04-27 05:12:07 UTC) #56
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1806253002/460001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1806253002/460001
4 years, 7 months ago (2016-04-27 05:56:42 UTC) #58
commit-bot: I haz the power
Committed patchset #19 (id:460001)
4 years, 7 months ago (2016-04-27 06:25:52 UTC) #60
commit-bot: I haz the power
Patchset 19 (id:??) landed as https://crrev.com/4eeea499401e03bcf098437d92bf35cf10ba4675 Cr-Commit-Position: refs/heads/master@{#390004}
4 years, 7 months ago (2016-04-27 06:27:04 UTC) #62
Matt Giuca
A revert of this CL (patchset #19 id:460001) has been created in https://codereview.chromium.org/1924753002/ by mgiuca@chromium.org. ...
4 years, 7 months ago (2016-04-27 07:15:39 UTC) #63
esprehn
Please don't commit code before sending the intent to implement, that's really backwards. The point ...
4 years, 7 months ago (2016-04-27 08:12:22 UTC) #65
esprehn
https://codereview.chromium.org/1806253002/diff/460001/third_party/WebKit/Source/modules/ballista/Actions.cpp File third_party/WebKit/Source/modules/ballista/Actions.cpp (right): https://codereview.chromium.org/1806253002/diff/460001/third_party/WebKit/Source/modules/ballista/Actions.cpp#newcode59 third_party/WebKit/Source/modules/ballista/Actions.cpp:59: Document* doc = toDocument(scriptState->getExecutionContext()); don't abbreviate in blink. https://codereview.chromium.org/1806253002/diff/460001/third_party/WebKit/Source/modules/ballista/Actions.h ...
4 years, 7 months ago (2016-04-27 08:18:57 UTC) #67
Matt Giuca
https://codereview.chromium.org/1806253002/diff/460001/third_party/WebKit/Source/modules/ballista/NavigatorActions.cpp File third_party/WebKit/Source/modules/ballista/NavigatorActions.cpp (right): https://codereview.chromium.org/1806253002/diff/460001/third_party/WebKit/Source/modules/ballista/NavigatorActions.cpp#newcode7 third_party/WebKit/Source/modules/ballista/NavigatorActions.cpp:7: #include "config.h" mostynb: Remove this stray include.
4 years, 7 months ago (2016-04-27 09:08:18 UTC) #68
dglazkov
On 2016/04/27 at 08:12:22, esprehn wrote: > Please don't commit code before sending the intent ...
4 years, 7 months ago (2016-04-27 17:10:59 UTC) #69
Matt Giuca
Update: There was a long offline discussion about the naming of this and strategy. We ...
4 years, 6 months ago (2016-06-22 03:52:48 UTC) #72
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1806253002/650001
4 years, 6 months ago (2016-06-22 03:53:12 UTC) #74
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/204765)
4 years, 6 months ago (2016-06-22 04:00:23 UTC) #76
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1806253002/670001
4 years, 6 months ago (2016-06-22 06:36:46 UTC) #81
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/204838)
4 years, 6 months ago (2016-06-22 06:44:02 UTC) #83
esprehn
I would suggest you don't need an OWNERS file until you've both landed a bunch ...
4 years, 6 months ago (2016-06-22 08:53:03 UTC) #84
Matt Giuca
On 2016/06/22 08:53:03, esprehn wrote: > I would suggest you don't need an OWNERS file ...
4 years, 6 months ago (2016-06-23 01:35:43 UTC) #85
Matt Giuca
Mike: Would you be able to look over this CL as it has changed a ...
4 years, 5 months ago (2016-07-07 04:26:54 UTC) #86
Mike West
Still LGTM % nits. https://codereview.chromium.org/1806253002/diff/710001/third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt File third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt (right): https://codereview.chromium.org/1806253002/diff/710001/third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt#newcode3931 third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt:3931: method share Nit: Consider adding ...
4 years, 5 months ago (2016-07-08 07:17:49 UTC) #87
Matt Giuca
https://codereview.chromium.org/1806253002/diff/710001/third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt File third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt (right): https://codereview.chromium.org/1806253002/diff/710001/third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt#newcode3931 third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt:3931: method share On 2016/07/08 07:17:49, Mike West wrote: > ...
4 years, 5 months ago (2016-07-11 07:40:38 UTC) #90
Mike West
On 2016/07/11 at 07:40:38, mgiuca wrote: > https://codereview.chromium.org/1806253002/diff/710001/third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt > File third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt (right): > > https://codereview.chromium.org/1806253002/diff/710001/third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt#newcode3931 ...
4 years, 5 months ago (2016-07-11 08:09:37 UTC) #91
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/1806253002/770001
4 years, 5 months ago (2016-07-12 00:49:49 UTC) #96
commit-bot: I haz the power
Committed patchset #33 (id:770001)
4 years, 5 months ago (2016-07-12 00:59:25 UTC) #98
commit-bot: I haz the power
CQ bit was unchecked.
4 years, 5 months ago (2016-07-12 00:59:30 UTC) #99
commit-bot: I haz the power
Patchset 33 (id:??) landed as https://crrev.com/d123f9a4d82543ae3769094df5c4cac24cd2d693 Cr-Commit-Position: refs/heads/master@{#404759}
4 years, 5 months ago (2016-07-12 01:00:42 UTC) #101
Matt Giuca
4 years, 5 months ago (2016-07-12 01:31:27 UTC) #102
Message was sent while issue was closed.
On 2016/07/12 01:00:42, commit-bot: I haz the power wrote:
> Patchset 33 (id:??) landed as
> https://crrev.com/d123f9a4d82543ae3769094df5c4cac24cd2d693
> Cr-Commit-Position: refs/heads/master@{#404759}

I filed the IDL bindings bug: https://crbug.com/627309.

Powered by Google App Engine
This is Rietveld 408576698