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

Issue 1466563003: Make [TypeChecking=Interface] the default (Closed)

Created:
5 years, 1 month ago by philipj_slow
Modified:
5 years ago
CC:
chromium-reviews, shans, zea+watch_chromium.org, tzik, dshwang, eae+blinkwatch, fs, dcheng, apavlov+blink_chromium.org, kouhei+svg_chromium.org, lushnikov+blink_chromium.org, rwlbuis, tim+watch_chromium.org, jsbell+serviceworker_chromium.org, caseq+blink_chromium.org, krit, toyoshim+midi_chromium.org, pvalenzuela+watch_chromium.org, yhirano+watch_chromium.org, blink-reviews-css, blink-reviews-html_chromium.org, kinuko+serviceworker, Justin Novosad, blink-reviews-dom_chromium.org, dglazkov+blink, Rik, blink-reviews-bindings_chromium.org, jkarlin+watch_chromium.org, devtools-reviews_chromium.org, blink-reviews, gyuyoung2, pdr+svgwatchlist_chromium.org, Eric Willigers, nessy, rjwright, mvanouwerkerk+watch_chromium.org, Peter Beverloo, sof, mlamouri+watch-blink_chromium.org, nhiroki, pfeldman+blink_chromium.org, timvolodine, feature-media-reviews_chromium.org, tommyw+watchlist_chromium.org, eric.carlson_apple.com, darktears, Raymond Toy, vcarbune.chromium, michaeln, tyoshino+watch_chromium.org, ajuma+watch-canvas_chromium.org, blink-reviews-animation_chromium.org, maxbogue+watch_chromium.org, gasubic, serviceworker-reviews, falken, plaree+watch_chromium.org, f(malita), horo+watch_chromium.org, Stephen Chennney, kinuko+fileapi, sergeyv+blink_chromium.org, kozyatinskiy+blink_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Make [TypeChecking=Interface] the default Add [LegacyInterfaceTypeChecking] as needed to ensure that there are no changes to the generated code. It was added to the members wherever possible, but in a few cases it was necessary to keep at the interface level. In all but one of these are cases it is because the constructor would otherwise change. The remaining case is FontFaceSet, where setlike<FontFace> results in generated has(), add() and delete() methods which would otherwise change. 90 instances of [LegacyInterfaceTypeChecking] were added, and 206 instances of [TypeChecking=Interface] were removed, in source/ and modules/ combined. In bindings/tests/, most tests that were previously for [TypeChecking=Interface] were changed to instead test [LegacyInterfaceTypeChecking], as that is now the special case. BUG=462561 Committed: https://crrev.com/0443b48253b56ed9bbd6597cbbad8f568c053c38 Cr-Commit-Position: refs/heads/master@{#361599}

Patch Set 1 #

Patch Set 2 : remove [TypeChecking=Interface] #

Patch Set 3 : more cleanup #

Patch Set 4 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+737 lines, -498 lines) Patch
M third_party/WebKit/Source/bindings/IDLExtendedAttributes.txt View 1 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/scripts/interface_dependency_resolver.py View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_attributes.py View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_interface.py View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_methods.py View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_utilities.py View 1 1 chunk +3 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/idls/core/TestInterface.idl View 1 2 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/idls/core/TestInterface2.idl View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/idls/core/TestObject.idl View 1 2 3 chunks +9 lines, -9 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/idls/core/TestPartialInterface4.idl View 1 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/tests/idls/core/TestSpecialOperations.idl View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/idls/modules/TestInterface5.idl View 1 2 2 chunks +1 line, -4 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexed.cpp View 1 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.cpp View 1 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedPrimaryGlobal.cpp View 1 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp View 1 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface3.cpp View 1 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp View 1 2 chunks +10 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp View 1 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp View 1 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp View 1 2 chunks +10 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceWillBeGarbageCollected.cpp View 1 2 chunks +10 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp View 1 2 3 70 chunks +357 lines, -65 lines 0 comments Download
M third_party/WebKit/Source/core/animation/Animation.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/animation/AnimationTimeline.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/animation/KeyframeEffect.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/clipboard/DataTransfer.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/clipboard/DataTransferItemList.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/css/FontFaceSet.idl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/WebKitCSSMatrix.idl View 2 chunks +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/CompositorProxy.idl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMImplementation.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DOMMatrix.idl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DataView.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Document.idl View 4 chunks +16 lines, -16 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Element.idl View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/MutationObserver.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/NamedNodeMap.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Node.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/NodeFilter.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Range.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/TreeWalker.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/URL.idl View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/editing/Selection.idl View 1 chunk +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/core/events/CompositionEvent.idl View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/events/EventTarget.idl View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/KeyboardEvent.idl View 1 chunk +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/core/events/MouseEvent.idl View 1 chunk +15 lines, -15 lines 0 comments Download
M third_party/WebKit/Source/core/events/MutationEvent.idl View 1 chunk +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/events/TextEvent.idl View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/events/TouchEvent.idl View 1 chunk +13 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/core/events/UIEvent.idl View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/fileapi/FileReader.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/fileapi/FileReaderSync.idl View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/frame/Window.idl View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/html/FormData.idl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLInputElement.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLOptionsCollection.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLSelectElement.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLTableElement.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/html/ImageData.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/track/TextTrack.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/imagebitmap/ImageBitmapFactories.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/page/PagePopupController.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGAngle.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGAnimatedBoolean.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGAnimatedEnumeration.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGAnimatedInteger.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGAnimatedNumber.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGFilterElement.idl View 1 2 3 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGGeometryElement.idl View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGGraphicsElement.idl View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGLength.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGLengthList.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGMarkerElement.idl View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGMatrix.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGNumber.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGNumberList.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGPathElement.idl View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGPoint.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGPointList.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGPreserveAspectRatio.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGRect.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGSVGElement.idl View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGStringList.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGTextContentElement.idl View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGTransform.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/SVGTransformList.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/testing/Internals.idl View 11 chunks +97 lines, -98 lines 0 comments Download
M third_party/WebKit/Source/core/testing/PrivateScriptTest.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/timing/ConsoleMemory.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.idl View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/core/xml/XMLSerializer.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/xml/XPathEvaluator.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/xml/XPathExpression.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/xml/XSLTProcessor.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.idl View 1 chunk +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/background_sync/SyncManager.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/cachestorage/Cache.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/cachestorage/CacheStorage.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/canvas2d/CanvasPattern.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl View 1 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/canvas2d/Path2D.idl View 1 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/compositorworker/CompositorWorkerGlobalScope.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/credentialmanager/CredentialsContainer.idl View 1 chunk +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.idl View 1 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/crypto/Crypto.idl View 1 chunk +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/crypto/SubtleCrypto.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.idl View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/encryptedmedia/MediaKeySystemAccess.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/fetch/Body.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/fetch/Headers.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/fetch/Request.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/fetch/Response.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/filesystem/DevToolsHostFileSystem.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/filesystem/Entry.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/filesystem/EntrySync.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/filesystem/FileWriter.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/filesystem/FileWriterSync.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/geofencing/Geofencing.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/geolocation/testing/InternalsGeolocation.idl View 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/imagebitmap/WindowImageBitmapFactories.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.idl View 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/mediasession/HTMLMediaElementMediaSession.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/mediasource/MediaSource.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/mediasource/SourceBuffer.idl View 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/mediasource/URLMediaSource.idl View 1 1 chunk +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/mediastream/MediaDevices.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/mediastream/MediaStream.idl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/mediastream/RTCDataChannel.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.idl View 3 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/modules/navigatorconnect/ServicePortCollection.idl View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/notifications/NotificationEvent.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/presentation/Presentation.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/presentation/PresentationConnection.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/quota/StorageManager.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/Client.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/Clients.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/ExtendableEvent.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/FetchEvent.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/InstallEvent.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainer.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/WindowClient.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/speech/SpeechRecognition.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/speech/SpeechSynthesis.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/speech/SpeechSynthesisUtterance.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/storage/StorageEvent.idl View 1 chunk +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/modules/vr/HMDVRDevice.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/vr/VRFieldOfView.idl View 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/webaudio/AnalyserNode.idl View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/webaudio/AudioBuffer.idl View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/webaudio/AudioBufferSourceNode.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webaudio/AudioContext.idl View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/webaudio/AudioNode.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webaudio/AudioParam.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/webaudio/ConvolverNode.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webaudio/WaveShaperNode.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webgl/ANGLEInstancedArrays.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webgl/CHROMIUMSubscribeUniform.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webgl/EXTBlendMinMax.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webgl/EXTDisjointTimerQuery.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webgl/OESVertexArrayObject.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webgl/WebGLDebugShaders.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webgl/WebGLLoseContext.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.idl View 1 chunk +2 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/webmidi/MIDIOutput.idl View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/websockets/WebSocket.idl View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/webusb/USBAlternateInterface.idl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/webusb/USBConfiguration.idl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/webusb/USBEndpoint.idl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/webusb/USBInterface.idl View 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 17 (7 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1466563003/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1466563003/60001
5 years ago (2015-11-24 16:01:26 UTC) #4
philipj_slow
yukishiino@, PTAL! For a change of this size I don't want to bother each individual ...
5 years ago (2015-11-24 16:06:30 UTC) #6
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years ago (2015-11-24 17:46:23 UTC) #8
haraken
LGTM on my side.
5 years ago (2015-11-24 23:36:15 UTC) #9
Yuki
Great work! lgtm.
5 years ago (2015-11-25 04:56:12 UTC) #10
philipj_slow
Jochen, can you please rubberstamp this? After landing, I will send a PSA to blink-dev ...
5 years ago (2015-11-25 06:55:53 UTC) #12
philipj_slow
On 2015/11/25 06:55:53, philipj wrote: > Jochen, can you please rubberstamp this? After landing, I ...
5 years ago (2015-11-25 06:57:46 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1466563003/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1466563003/60001
5 years ago (2015-11-25 06:59:12 UTC) #15
commit-bot: I haz the power
Committed patchset #4 (id:60001)
5 years ago (2015-11-25 07:08:24 UTC) #16
commit-bot: I haz the power
5 years ago (2015-11-25 07:09:38 UTC) #17
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/0443b48253b56ed9bbd6597cbbad8f568c053c38
Cr-Commit-Position: refs/heads/master@{#361599}

Powered by Google App Engine
This is Rietveld 408576698