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

Issue 1854423002: ASSERT -> {DCHECK|DCHECK_XX}, ENABLE(ASSERT) -> DCHECK_IS_ON() in dom (Closed)

Created:
4 years, 8 months ago by hayato
Modified:
4 years, 8 months ago
Reviewers:
tkent, kochi
CC:
aboxhall, darktears, blink-reviews, blink-reviews-animation_chromium.org, blink-reviews-dom_chromium.org, blink-reviews-style_chromium.org, chromium-reviews, dglazkov+blink, dmazzoni, eae+blinkwatch, Eric Willigers, je_julie, nektarios, rjwright, rwlbuis, shans, sof, webcomponents-bugzilla_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

ASSERT -> {DCHECK|DCHECK_XX}, ENABLE(ASSERT) -> DCHECK_IS_ON() in dom There are several places where DCHECK_{EQ/NE} can not be used because "operator<<(ostream&, T&)" is not defined for T. To isolate issues, other macros, such as RELEASE_ASSERT, will be replaced in another CL. BUG=596760, 601669 Committed: https://crrev.com/63915eb8cbda0af155de9e774283fa0828e9f446 Cr-Commit-Position: refs/heads/master@{#385971}

Patch Set 1 #

Patch Set 2 : wip #

Patch Set 3 : wip #

Patch Set 4 : wip #

Patch Set 5 : ENABLE(ASSERT) -> Use DCHECK_IS_ON #

Patch Set 6 : guard by DCHECK_IS_ON #

Patch Set 7 : fix a wrong replacement #

Patch Set 8 : rebased #

Patch Set 9 : rebase again #

Patch Set 10 : mark svg/as-image/svg-nested.html crash on win #

Unified diffs Side-by-side diffs Delta from patch set Stats (+922 lines, -864 lines) Patch
M third_party/WebKit/LayoutTests/TestExpectations View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/AXObjectCache.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ActiveDOMObject.h View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ActiveDOMObject.cpp View 1 2 3 4 5 2 chunks +8 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Attr.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/CharacterData.h View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/CharacterData.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/ChildFrameDisconnector.cpp View 1 2 3 4 5 6 7 3 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ChildListMutationScope.cpp View 1 2 3 4 4 chunks +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ChildNodeList.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/CompositorProxy.cpp View 1 2 3 4 5 5 chunks +12 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ContainerNode.h View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ContainerNode.cpp View 1 2 3 4 5 6 7 8 35 chunks +62 lines, -54 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ContextFeatures.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.cpp View 1 2 3 4 5 4 chunks +13 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMArrayBuffer.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DOMArrayBufferBase.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DOMArrayBufferView.h View 1 2 3 3 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMDataView.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMException.cpp View 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMImplementation.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DOMSharedArrayBuffer.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMSharedArrayBuffer.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DOMTypedArray.cpp View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DOMURL.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Document.h View 1 2 3 4 5 6 7 8 9 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Document.cpp View 1 2 3 4 5 6 7 8 9 65 chunks +93 lines, -93 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentInit.cpp View 1 2 3 5 chunks +9 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentLifecycle.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentOrderedMap.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentOrderedMap.cpp View 1 2 3 4 5 8 chunks +20 lines, -18 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentParser.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentParser.cpp View 1 2 3 4 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentParserTiming.cpp View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentStyleSheetCollection.cpp View 1 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentType.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/DocumentVisibilityObserver.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Element.h View 1 2 3 4 5 6 7 8 8 chunks +17 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Element.cpp View 1 2 3 4 5 6 7 8 56 chunks +97 lines, -93 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ElementData.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ElementDataCache.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/ElementRareData.h View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ElementTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/ExecutionContext.cpp View 1 2 3 4 5 6 7 3 chunks +6 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/FirstLetterPseudoElement.cpp View 4 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/dom/FlexibleArrayBufferView.h View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.cpp View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Fullscreen.cpp View 1 2 3 4 5 6 7 8 9 9 chunks +9 lines, -9 lines 0 comments Download
M third_party/WebKit/Source/core/dom/IconURL.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/IdTargetObserverRegistry.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/IdTargetObserverRegistry.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/IntersectionObservation.cpp View 1 2 3 4 5 6 7 8 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/IntersectionObserver.cpp View 1 2 3 4 5 6 7 8 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/LayoutTreeBuilder.h View 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/dom/LayoutTreeBuilder.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/LayoutTreeBuilderTraversal.cpp View 1 2 3 4 5 6 7 8 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/LiveNodeListBase.h View 1 2 3 3 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/dom/MainThreadTaskRunner.cpp View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/MessageChannel.cpp View 1 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/MessagePort.cpp View 6 chunks +9 lines, -9 lines 0 comments Download
M third_party/WebKit/Source/core/dom/MutationObserver.cpp View 1 2 3 4 5 6 7 8 chunks +11 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/core/dom/MutationObserverInterestGroup.cpp View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/MutationObserverRegistration.cpp View 1 2 3 4 4 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/dom/NamedNodeMap.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/NamedNodeMap.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Node.h View 1 2 3 4 5 6 7 8 4 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Node.cpp View 1 2 3 4 5 6 7 8 29 chunks +50 lines, -44 lines 0 comments Download
M third_party/WebKit/Source/core/dom/NodeComputedStyle.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/NodeIntersectionObserverData.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/NodeIterator.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/NodeListsNodeData.h View 1 7 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/dom/NodeRareData.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/NodeTraversal.cpp View 1 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/NodeWithIndex.h View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/NthIndexCache.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/NthIndexCache.cpp View 1 2 3 4 5 10 chunks +16 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/core/dom/PendingScript.cpp View 1 7 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/dom/PresentationAttributeStyle.cpp View 1 2 3 4 5 6 7 8 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp View 1 2 3 4 5 6 7 8 5 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/dom/PseudoElement.cpp View 1 5 chunks +9 lines, -9 lines 0 comments Download
M third_party/WebKit/Source/core/dom/QualifiedName.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/QualifiedName.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Range.h View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Range.cpp View 1 2 3 4 5 6 7 8 21 chunks +45 lines, -45 lines 0 comments Download
M third_party/WebKit/Source/core/dom/RangeBoundaryPoint.h View 1 2 3 4 5 6 7 8 5 chunks +11 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/core/dom/RemoteSecurityContext.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/ScriptLoader.cpp View 1 2 3 4 5 6 7 8 7 chunks +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ScriptRunner.cpp View 1 2 3 4 5 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ScriptedAnimationController.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/ScriptedIdleTaskController.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/SecurityContext.cpp View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/SelectorQuery.cpp View 1 2 3 4 5 6 7 8 8 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ShadowTreeStyleSheetCollection.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/SpaceSplitString.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/StyleChangeReason.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/StyleElement.cpp View 1 2 3 4 5 6 7 8 6 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/dom/StyleEngine.cpp View 1 2 3 4 5 6 7 8 16 chunks +29 lines, -29 lines 0 comments Download
M third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/StyleSheetCollection.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/TagCollection.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/TagCollection.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Text.cpp View 1 2 3 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/TreeScope.h View 3 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/dom/TreeScope.cpp View 1 2 3 4 5 6 7 6 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/dom/TreeScopeAdopter.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/TreeScopeAdopter.cpp View 1 2 3 4 5 6 chunks +11 lines, -9 lines 0 comments Download
M third_party/WebKit/Source/core/dom/TreeScopeStyleSheetCollection.cpp View 1 2 3 4 5 6 7 8 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/TreeShared.h View 1 2 3 4 5 3 chunks +22 lines, -16 lines 0 comments Download
M third_party/WebKit/Source/core/dom/TreeWalker.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/TypedFlexibleArrayBufferView.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/URLSearchParams.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/UserActionElementSet.cpp View 1 2 3 4 5 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/dom/VisitedLinkState.cpp View 2 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/dom/WeakIdentifierMap.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElement.cpp View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementCallbackInvocation.cpp View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementCallbackQueue.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementCallbackQueue.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp View 1 2 3 4 2 chunks +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskImportStep.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementProcessingStack.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementProcessingStack.cpp View 1 2 3 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementRegistrationContext.cpp View 1 2 3 4 5 6 7 4 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/custom/CustomElementScheduler.cpp View 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/ElementShadow.h View 1 2 3 4 5 6 7 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/ElementShadow.cpp View 1 2 3 4 5 5 chunks +11 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.h View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversal.cpp View 1 2 3 4 5 6 7 8 7 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversalTest.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/InsertionPoint.cpp View 1 2 3 5 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp View 1 2 3 4 5 6 7 8 7 chunks +9 lines, -9 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/ShadowRootRareData.h View 1 2 3 4 5 6 7 4 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/SlotAssignment.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/shadow/SlotScopedTraversal.cpp View 1 2 2 chunks +5 lines, -5 lines 0 comments Download

Messages

Total messages: 88 (47 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/1854423002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/1
4 years, 8 months ago (2016-04-05 06:01:14 UTC) #2
commit-bot: I haz the power
Dry run: 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/116614)
4 years, 8 months ago (2016-04-05 06:15:59 UTC) #4
hayato
wip
4 years, 8 months ago (2016-04-05 06:30:41 UTC) #6
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/20001
4 years, 8 months ago (2016-04-05 06:30:57 UTC) #7
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: cast_shell_linux on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_linux/builds/139567)
4 years, 8 months ago (2016-04-05 06:43:42 UTC) #9
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/40001
4 years, 8 months ago (2016-04-05 11:14:50 UTC) #11
hayato
wip
4 years, 8 months ago (2016-04-05 11:14:51 UTC) #12
commit-bot: I haz the power
Dry run: 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/116673)
4 years, 8 months ago (2016-04-05 11:28:50 UTC) #14
hayato
wip
4 years, 8 months ago (2016-04-05 12:03:18 UTC) #16
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/60001
4 years, 8 months ago (2016-04-05 12:03:23 UTC) #17
commit-bot: I haz the power
Dry run: 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/116763) chromeos_daisy_chromium_compile_only_ng on ...
4 years, 8 months ago (2016-04-05 12:23:44 UTC) #23
hayato
ENABLE(ASSERT) -> Use DCHECK_IS_ON
4 years, 8 months ago (2016-04-05 12:45:46 UTC) #29
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/80001
4 years, 8 months ago (2016-04-05 12:45:47 UTC) #30
commit-bot: I haz the power
Dry run: 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/116691)
4 years, 8 months ago (2016-04-05 13:00:37 UTC) #32
hayato
guard by DCHECK_IS_ON
4 years, 8 months ago (2016-04-05 13:23:47 UTC) #34
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/100001
4 years, 8 months ago (2016-04-05 13:23:58 UTC) #35
hayato
See https://groups.google.com/a/chromium.org/d/msg/blink-dev/TL0NkNXIT1w/ZU4509xpAgAJ also why I have to guard DCHECK by DCHECK_IS_ON at some places.
4 years, 8 months ago (2016-04-05 13:50:50 UTC) #36
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/199603)
4 years, 8 months ago (2016-04-05 14:41:33 UTC) #38
kochi
rs LGTM
4 years, 8 months ago (2016-04-06 04:47:00 UTC) #39
hayato
fix a wrong replacement
4 years, 8 months ago (2016-04-06 05:28:35 UTC) #41
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/120001
4 years, 8 months ago (2016-04-06 05:28:56 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/120001
4 years, 8 months ago (2016-04-06 05:29:44 UTC) #46
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/200302)
4 years, 8 months ago (2016-04-06 07:51:39 UTC) #48
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/120001
4 years, 8 months ago (2016-04-06 08:01:24 UTC) #50
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/200330)
4 years, 8 months ago (2016-04-06 09:26:53 UTC) #52
hayato
rebased
4 years, 8 months ago (2016-04-07 03:44:52 UTC) #54
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/140001
4 years, 8 months ago (2016-04-07 03:45:12 UTC) #55
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/140001
4 years, 8 months ago (2016-04-07 03:45:35 UTC) #59
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/192767)
4 years, 8 months ago (2016-04-07 05:04:38 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/140001
4 years, 8 months ago (2016-04-07 05:10:06 UTC) #63
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/201145)
4 years, 8 months ago (2016-04-07 07:43:15 UTC) #65
hayato
rebase again
4 years, 8 months ago (2016-04-07 08:56:22 UTC) #67
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/160001
4 years, 8 months ago (2016-04-07 08:56:25 UTC) #68
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/160001
4 years, 8 months ago (2016-04-07 08:56:45 UTC) #72
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/201179)
4 years, 8 months ago (2016-04-07 11:50:06 UTC) #74
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/160001
4 years, 8 months ago (2016-04-08 00:47:53 UTC) #76
commit-bot: I haz the power
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/166133)
4 years, 8 months ago (2016-04-08 00:58:06 UTC) #78
hayato
mark svg/as-image/svg-nested.html crash on win
4 years, 8 months ago (2016-04-08 01:36:44 UTC) #81
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1854423002/180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1854423002/180001
4 years, 8 months ago (2016-04-08 01:37:12 UTC) #85
commit-bot: I haz the power
Committed patchset #10 (id:180001)
4 years, 8 months ago (2016-04-08 03:15:23 UTC) #86
commit-bot: I haz the power
4 years, 8 months ago (2016-04-08 03:17:13 UTC) #88
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/63915eb8cbda0af155de9e774283fa0828e9f446
Cr-Commit-Position: refs/heads/master@{#385971}

Powered by Google App Engine
This is Rietveld 408576698