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

Issue 327633004: Apply DEFINE/DECLARE_NODE_FACTORY(T) macro to element factories with single Document& argument. (Closed)

Created:
6 years, 6 months ago by tkent
Modified:
6 years, 6 months ago
Reviewers:
oilpan-reviews, haraken
CC:
blink-reviews, shans, eae+blinkwatch, fs, eric.carlson_apple.com, kouhei+svg_chromium.org, rwlbuis, krit, blink-reviews-dom_chromium.org, blink-reviews-html_chromium.org, Timothy Loh, dstockwell, dglazkov+blink, pdr., Eric Willigers, kenneth.christiansen, nessy, rjwright, sof, gyuyoung.kim_webkit.org, darktears, vcarbune.chromium, philipj_slow, blink-reviews-animation_chromium.org, gasubic, Mike Lawther (Google), ed+blinkwatch_opera.com, Steve Block, f(malita), Stephen Chennney
Visibility:
Public.

Description

Apply DEFINE/DECLARE_NODE_FACTORY(T) macro to element factories with single Document& argument. We're going to change element factories at least twice. 1. Replace adoptRefWillBeRefCountedGarbageCollected with adoptRefWillBeNoop 2-1. Replace PassRefPtrWillBeRawPtr<T> with T* and remove adoptRefWillBeNoop if we switch to Oilpan successfully. 2-2. Replace PassRefPtrWillBeRawPtr<T> with PassRefPtr<T>, and adoptRefWillBeNoop with adoptRef if we decide not to switch to Oilpan. This CL makes these changes easier. Also, this CL split existing DEFINE_NODE_FACTORY into DECLARE_NODE_FACTORY and DEFINE_NODE_FACTORY to avoid inline definition in headers. http://www.chromium.org/developers/coding-style/cpp-dos-and-donts#TOC-Stop-inlining-code-in-headers BUG=357163 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=175851

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+436 lines, -423 lines) Patch
M Source/core/dom/Node.h View 1 chunk +6 lines, -4 lines 0 comments Download
M Source/core/html/HTMLAreaElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLAreaElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLBDIElement.h View 2 chunks +4 lines, -5 lines 0 comments Download
M Source/core/html/HTMLBRElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLBRElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLBaseElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLBaseElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLBodyElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLBodyElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLCanvasElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLCanvasElement.cpp View 2 chunks +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLContentElement.h View 1 chunk +1 line, -2 lines 0 comments Download
M Source/core/html/HTMLContentElement.cpp View 2 chunks +3 lines, -6 lines 0 comments Download
M Source/core/html/HTMLDListElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLDListElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLDialogElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLDialogElement.cpp View 2 chunks +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLDirectoryElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLDirectoryElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLDivElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLDivElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLFontElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFontElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLFrameElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFrameElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLFrameSetElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFrameSetElement.cpp View 2 chunks +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLHRElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLHRElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLHeadElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLHeadElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLHtmlElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLHtmlElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLIFrameElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLIFrameElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLLIElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLLIElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLLabelElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLLabelElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLLegendElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLLegendElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLMapElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLMapElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLMenuElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLMenuElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLMetaElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLMetaElement-in.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLNoEmbedElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLNoEmbedElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLNoScriptElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLNoScriptElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLOListElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLOListElement.cpp View 2 chunks +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLOptGroupElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLOptGroupElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLParagraphElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLParagraphElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLParamElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLParamElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLPictureElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLPictureElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/html/HTMLRTElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLRTElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLRubyElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLRubyElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLShadowElement.h View 1 chunk +1 line, -2 lines 0 comments Download
M Source/core/html/HTMLShadowElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLSourceElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLSourceElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLSpanElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLSpanElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLTableCaptionElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTableCaptionElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLTableElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTableElement.cpp View 2 chunks +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLTableRowElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTableRowElement.cpp View 2 chunks +3 lines, -6 lines 0 comments Download
M Source/core/html/HTMLTemplateElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTemplateElement.cpp View 2 chunks +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLTitleElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTitleElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/html/HTMLTrackElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTrackElement.cpp View 2 chunks +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLUListElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLUListElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/HTMLWBRElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLWBRElement.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M Source/core/html/shadow/ProgressShadowElement.h View 2 chunks +3 lines, -18 lines 0 comments Download
M Source/core/html/shadow/ProgressShadowElement.cpp View 3 chunks +8 lines, -2 lines 0 comments Download
M Source/core/html/shadow/SliderThumbElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/shadow/SliderThumbElement.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M Source/core/svg/SVGAElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGAltGlyphDefElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAltGlyphDefElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGAltGlyphElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAltGlyphElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGAltGlyphItemElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAltGlyphItemElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimateMotionElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAnimateMotionElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGAnimateTransformElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGAnimateTransformElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGCircleElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGCircleElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGClipPathElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGClipPathElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGCursorElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGCursorElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGDefsElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGDefsElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGDescElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGDescElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGDiscardElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGDiscardElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGEllipseElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGEllipseElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEBlendElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEBlendElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEColorMatrixElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEColorMatrixElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEComponentTransferElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEComponentTransferElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFECompositeElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFECompositeElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEConvolveMatrixElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEConvolveMatrixElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEDiffuseLightingElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEDiffuseLightingElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEDisplacementMapElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEDisplacementMapElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEDistantLightElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEDistantLightElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEDropShadowElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEDropShadowElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEFloodElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEFloodElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEFuncAElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEFuncAElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEFuncBElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEFuncBElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEFuncGElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEFuncGElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEFuncRElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEFuncRElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEGaussianBlurElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEGaussianBlurElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEImageElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEImageElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEMergeElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEMergeElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEMergeNodeElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEMergeNodeElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEMorphologyElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEMorphologyElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEOffsetElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEOffsetElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFEPointLightElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFEPointLightElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFESpecularLightingElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFESpecularLightingElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFESpotLightElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFESpotLightElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFETileElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFETileElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFETurbulenceElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFETurbulenceElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFilterElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFilterElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFontElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFontElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFontFaceElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFontFaceElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFontFaceFormatElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFontFaceFormatElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFontFaceNameElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFontFaceNameElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFontFaceSrcElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFontFaceSrcElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGFontFaceUriElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGFontFaceUriElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGForeignObjectElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGForeignObjectElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGGElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGGElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGGlyphElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGGlyphElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGGlyphRefElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGGlyphRefElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGHKernElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGHKernElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGImageElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGImageElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGLineElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGLineElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGLinearGradientElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGLinearGradientElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGMPathElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGMPathElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGMarkerElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGMarkerElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGMaskElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGMaskElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGMetadataElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGMetadataElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGMissingGlyphElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGMissingGlyphElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGPathElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGPathElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGPatternElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGPatternElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGPolygonElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGPolygonElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGPolylineElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGPolylineElement.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/svg/SVGRadialGradientElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGRadialGradientElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGRectElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGRectElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGSVGElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGSVGElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGSetElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGSetElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGStopElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGStopElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGSwitchElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGSwitchElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGSymbolElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGSymbolElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGTSpanElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTSpanElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGTextElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTextElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGTextPathElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTextPathElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGTitleElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGTitleElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGVKernElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGVKernElement.cpp View 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/svg/SVGViewElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGViewElement.cpp View 2 chunks +3 lines, -1 line 0 comments Download

Messages

Total messages: 6 (0 generated)
tkent
Please review this trivial change.
6 years, 6 months ago (2014-06-10 01:59:25 UTC) #1
haraken
I just reviewed several files in dom/ and html/. rubberstamp LGTM.
6 years, 6 months ago (2014-06-10 02:04:07 UTC) #2
tkent
The CQ bit was checked by tkent@chromium.org
6 years, 6 months ago (2014-06-10 02:14:47 UTC) #3
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tkent@chromium.org/327633004/1
6 years, 6 months ago (2014-06-10 02:15:16 UTC) #4
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_blink_rel on tryserver.blink ...
6 years, 6 months ago (2014-06-10 03:06:22 UTC) #5
commit-bot: I haz the power
6 years, 6 months ago (2014-06-10 03:46:34 UTC) #6
Message was sent while issue was closed.
Change committed as 175851

Powered by Google App Engine
This is Rietveld 408576698