Ignore:
Timestamp:
Dec 15, 2016, 1:26:08 PM (8 years ago)
Author:
Konstantin Tokarev
Message:

Added missing override and final specifiers
https://bugs.webkit.org/show_bug.cgi?id=165903

Reviewed by Darin Adler.

Source/JavaScriptCore:

  • bytecompiler/BytecodeGenerator.h:
  • jsc.cpp:
  • parser/Nodes.h:

Source/WebCore:

No new tests needed.

  • Modules/mediastream/OverconstrainedErrorEvent.h:
  • bindings/js/JSCallbackData.h:
  • bindings/js/JSCustomXPathNSResolver.h:
  • bindings/js/JSErrorHandler.h:
  • css/StyleRuleImport.h:
  • dom/SecurityPolicyViolationEvent.h:
  • editing/CreateLinkCommand.h:
  • editing/DeleteSelectionCommand.h:
  • editing/DictationCommand.h:
  • editing/Editor.cpp:
  • editing/FormatBlockCommand.h:
  • editing/IndentOutdentCommand.h:
  • editing/InsertLineBreakCommand.h:
  • editing/InsertParagraphSeparatorCommand.h:
  • editing/ModifySelectionListLevel.h:
  • editing/MoveSelectionCommand.h:
  • editing/RemoveFormatCommand.h:
  • editing/RemoveNodePreservingChildrenCommand.h:
  • editing/ReplaceSelectionCommand.h:
  • editing/SimplifyMarkupCommand.h:
  • editing/SplitTextNodeContainingElementCommand.h:
  • editing/UnlinkCommand.h:
  • fileapi/FileReaderLoader.h:
  • html/canvas/ANGLEInstancedArrays.h:
  • html/canvas/WebGLVertexArrayObjectBase.h:
  • loader/SinkDocument.h:
  • loader/archive/mhtml/MHTMLArchive.h:
  • page/animation/CSSPropertyAnimation.cpp:
  • platform/audio/MultiChannelResampler.cpp:
  • platform/audio/SincResampler.cpp:
  • platform/audio/gstreamer/AudioDestinationGStreamer.h:
  • platform/audio/gstreamer/AudioSourceProviderGStreamer.h:
  • platform/graphics/TextTrackRepresentation.cpp:
  • platform/graphics/displaylists/DisplayListItems.h:
  • platform/graphics/filters/FEBlend.h:
  • platform/graphics/filters/FEColorMatrix.h:
  • platform/graphics/filters/FEComponentTransfer.h:
  • platform/graphics/filters/FEConvolveMatrix.h:
  • platform/graphics/filters/FEDiffuseLighting.h:
  • platform/graphics/filters/FEDropShadow.h:
  • platform/graphics/filters/FEGaussianBlur.h:
  • platform/graphics/filters/FELighting.h:
  • platform/graphics/filters/FEMerge.h:
  • platform/graphics/filters/FEMorphology.h:
  • platform/graphics/filters/FEOffset.h:
  • platform/graphics/filters/FESpecularLighting.h:
  • platform/graphics/filters/FETile.h:
  • platform/graphics/filters/FETurbulence.h:
  • platform/graphics/filters/SourceAlpha.h:
  • platform/graphics/filters/SourceGraphic.h:
  • platform/graphics/opengl/Extensions3DOpenGL.h:
  • platform/graphics/opengl/Extensions3DOpenGLCommon.h:
  • platform/graphics/texmap/TextureMapperBackingStore.h:
  • platform/mediastream/openwebrtc/RealtimeMediaSourceOwr.h:
  • platform/mock/GeolocationClientMock.h:
  • platform/text/TextCodecICU.h:
  • platform/text/TextCodecLatin1.h:
  • platform/text/TextCodecUTF16.h:
  • platform/text/TextCodecUTF8.h:
  • platform/text/TextCodecUserDefined.h:
  • rendering/RenderFullScreen.cpp:
  • storage/StorageEvent.h:
  • svg/properties/SVGListProperty.h:
  • svg/properties/SVGStaticListPropertyTearOff.h:
  • svg/properties/SVGStaticPropertyTearOff.h:
  • xml/NativeXPathNSResolver.h:
  • xml/XMLHttpRequestProgressEvent.h:
  • xml/XMLHttpRequestProgressEventThrottle.h:
  • xml/XPathVariableReference.h:
  • xml/XSLImportRule.h:

Source/WebKit2:

  • UIProcess/API/gtk/WebKitGeolocationProvider.h:
  • UIProcess/WebFormSubmissionListenerProxy.h:
  • UIProcess/WebFramePolicyListenerProxy.h:
  • WebProcess/Automation/WebAutomationSessionProxy.h:
  • WebProcess/InjectedBundle/API/gtk/DOM/GObjectXPathNSResolver.h:
  • WebProcess/MediaCache/WebMediaKeyStorageManager.h:
  • WebProcess/Plugins/Netscape/NPRuntimeObjectMap.h:
  • WebProcess/WebCoreSupport/WebPlugInClient.h:
  • WebProcess/WebCoreSupport/soup/WebFrameNetworkingContext.h:
  • WebProcess/WebPage/FindController.h:

Source/WTF:

  • wtf/RunLoop.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jsc.cpp

    r209764 r209871  
    202202class ElementHandleOwner : public WeakHandleOwner {
    203203public:
    204     virtual bool isReachableFromOpaqueRoots(Handle<JSC::Unknown> handle, void*, SlotVisitor& visitor)
     204    bool isReachableFromOpaqueRoots(Handle<JSC::Unknown> handle, void*, SlotVisitor& visitor) override
    205205    {
    206206        Element* element = jsCast<Element*>(handle.slot()->asCell());
Note: See TracChangeset for help on using the changeset viewer.