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

Issue 216523002: Oilpan: Replace most of RefPtrs for Event objects with oilpan's transition types (Closed)

Created:
6 years, 8 months ago by haraken
Modified:
6 years, 8 months ago
CC:
blink-reviews, ericu+idb_chromium.org, shans, jsbell+idb_chromium.org, gasubic, eae+blinkwatch, fs, eric.carlson_apple.com, nessy, apavlov+blink_chromium.org, adamk+blink_chromium.org, kinuko+watch, Steve Block, dino_apple.com, rune+blink, Nils Barth (inactive), jamesr, Nate Chapin, arv+blink, alancutter (OOO until 2018), marja+watch_chromium.org, dsinclair, dgrogan, alecflett, dglazkov+blink, abarth-chromium, aandrey+blink_chromium.org, dstockwell, Timothy Loh, Rik, gavinp+loader_chromium.org, jchaffraix+rendering, pdr., rwlbuis, Eric Willigers, mvanouwerkerk+watch_chromium.org, philipj_slow, rjwright, Mads Ager (chromium), zoltan1, sof, kouhei+svg_chromium.org, Raymond Toy, timvolodine, feature-media-reviews_chromium.org, tommyw+watchlist_chromium.org, krit, gyuyoung.kim_webkit.org, darktears, kojih, vcarbune.chromium, jsbell+bindings_chromium.org, bemjb+rendering_chromium.org, kouhei+bindings_chromium.org, leviw+renderwatch, falken, Mike Lawther (Google), ed+blinkwatch_opera.com, f(malita), Inactive, cmumford, groby+blinkspell_chromium.org, horo+watch_chromium.org, Stephen Chennney, kouhei+heap_chromium.org
Visibility:
Public.

Description

Oilpan: Replace most of RefPtrs of Event objects with oilpan's transition types - Basically, this CL does the following three things: (1) Replace PassRefPtr<xxxEvent> with PassRefPtrWillBeRawPtr<xxxEvent>. (2) Replace RefPtr<xxxEvent> in on-heap objects with RefPtrWillBeMember<xxxEvent>. (3) Replace RefPtr<xxxEvent> in off-heap objects with RefPtrWillBePersistent<xxxEvent>. - This CL is not replacing any raw pointers with Members/Persistents, so it won't produce new memory leaks. - This CL uses ListHashSet<Persistent<Event>> for DOMWindowEventQueue::m_queuedEvents, because HeapListHashSet is not yet implemented. - This CL uses Deque<Persistent<Event>> for WebSocket::m_events, because HeapDeque is not yet implemented. - In follow-up CLs, I will move more Event related objects to the heap and reduce Persistent handles introduced in this CL. BUG=340522 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=170733 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=170769

Patch Set 1 #

Patch Set 2 : #

Total comments: 5

Patch Set 3 : #

Total comments: 6

Patch Set 4 : #

Patch Set 5 : #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+324 lines, -284 lines) Patch
M Source/bindings/v8/V8Initializer.cpp View 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/bindings/v8/WorkerScriptController.h View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M Source/bindings/v8/WorkerScriptController.cpp View 1 2 3 4 3 chunks +8 lines, -3 lines 0 comments Download
M Source/core/animation/css/CSSAnimations.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/css/CSSFontFaceLoadEvent.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/FontFaceSet.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 1 comment Download
M Source/core/dom/Document.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/Document.cpp View 1 2 3 4 4 chunks +5 lines, -5 lines 0 comments Download
M Source/core/dom/Element.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/dom/ExecutionContext.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/dom/ExecutionContext.cpp View 3 chunks +4 lines, -4 lines 0 comments Download
M Source/core/dom/MainThreadTaskRunnerTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/MessagePort.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/Node.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/dom/Node.cpp View 1 2 3 4 4 chunks +6 lines, -6 lines 0 comments Download
M Source/core/dom/ScriptedAnimationController.h View 3 chunks +4 lines, -3 lines 0 comments Download
M Source/core/dom/ScriptedAnimationController.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/editing/Editor.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/InputMethodController.cpp View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/editing/ReplaceSelectionCommand.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/TextInsertionBaseCommand.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/events/DOMWindowEventQueue.h View 2 chunks +4 lines, -3 lines 0 comments Download
M Source/core/events/DOMWindowEventQueue.cpp View 4 chunks +5 lines, -5 lines 0 comments Download
M Source/core/events/Event.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/events/Event.cpp View 2 chunks +3 lines, -2 lines 0 comments Download
M Source/core/events/EventDispatchMediator.h View 2 chunks +5 lines, -4 lines 0 comments Download
M Source/core/events/EventDispatchMediator.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/events/EventDispatcher.h View 3 chunks +3 lines, -2 lines 0 comments Download
M Source/core/events/EventDispatcher.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/events/EventQueue.h View 2 chunks +2 lines, -1 line 0 comments Download
M Source/core/events/EventTarget.h View 2 chunks +3 lines, -2 lines 0 comments Download
M Source/core/events/EventTarget.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/events/FocusEvent.h View 1 chunk +8 lines, -8 lines 0 comments Download
M Source/core/events/FocusEvent.cpp View 4 chunks +8 lines, -8 lines 0 comments Download
M Source/core/events/GenericEventQueue.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/events/GenericEventQueue.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/events/GestureEvent.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/events/GestureEvent.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/events/KeyboardEvent.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/events/KeyboardEvent.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/events/MouseEvent.h View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/events/MouseEvent.cpp View 4 chunks +5 lines, -5 lines 0 comments Download
M Source/core/events/TouchEvent.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/events/TouchEvent.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/frame/DOMWindow.h View 3 chunks +4 lines, -4 lines 0 comments Download
M Source/core/frame/DOMWindow.cpp View 7 chunks +8 lines, -8 lines 0 comments Download
M Source/core/frame/DeviceSensorEventController.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/frame/DeviceSensorEventController.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/frame/FrameView.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFormElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFormElement.cpp View 1 2 3 4 3 chunks +4 lines, -2 lines 0 comments Download
M Source/core/html/HTMLMediaElement.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLMediaElement.cpp View 1 2 3 4 4 chunks +4 lines, -4 lines 0 comments Download
M Source/core/html/MediaController.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/MediaController.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/canvas/CanvasRenderingContext2D.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/canvas/WebGLRenderingContextBase.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/parser/HTMLScriptRunner.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/track/TextTrackCue.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/track/TextTrackCue.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/loader/FormSubmission.h View 4 chunks +4 lines, -3 lines 0 comments Download
M Source/core/loader/FormSubmission.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/loader/FrameLoadRequest.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/loader/NavigationAction.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/loader/NavigationAction.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/loader/appcache/ApplicationCacheHost.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M Source/core/page/EventHandler.cpp View 1 2 3 5 chunks +5 lines, -5 lines 0 comments Download
M Source/core/page/EventSource.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/page/EventSource.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/rendering/RenderBlock.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGDocument.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/svg/SVGElementInstance.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGElementInstance.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/workers/SharedWorkerGlobalScope.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/workers/SharedWorkerGlobalScope.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/workers/WorkerEventQueue.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/workers/WorkerEventQueue.cpp View 4 chunks +6 lines, -6 lines 0 comments Download
M Source/core/workers/WorkerGlobalScope.cpp View 1 2 3 4 1 chunk +1 line, -1 line 1 comment Download
M Source/core/workers/WorkerMessagingProxy.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/xml/XMLHttpRequest.cpp View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/xml/XMLHttpRequestProgressEventThrottle.h View 1 2 3 4 3 chunks +8 lines, -4 lines 0 comments Download
M Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp View 1 2 3 4 5 chunks +13 lines, -7 lines 0 comments Download
M Source/heap/Handle.h View 1 2 3 3 chunks +14 lines, -0 lines 0 comments Download
M Source/modules/battery/BatteryManager.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/battery/BatteryManager.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/device_orientation/DeviceMotionController.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/device_orientation/DeviceMotionController.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/device_orientation/DeviceOrientationController.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/device_orientation/DeviceOrientationController.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp View 6 chunks +7 lines, -7 lines 0 comments Download
M Source/modules/encryptedmedia/MediaKeySession.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/encryptedmedia/MediaKeySession.cpp View 4 chunks +4 lines, -4 lines 0 comments Download
M Source/modules/gamepad/NavigatorGamepad.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/gamepad/NavigatorGamepad.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/indexeddb/IDBDatabase.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/modules/indexeddb/IDBDatabase.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/indexeddb/IDBOpenDBRequest.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/indexeddb/IDBOpenDBRequest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/indexeddb/IDBRequest.h View 3 chunks +3 lines, -3 lines 0 comments Download
M Source/modules/indexeddb/IDBRequest.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/indexeddb/IDBRequestTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/indexeddb/IDBTransaction.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/indexeddb/IDBTransaction.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/mediasource/MediaSourceBase.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/mediasource/SourceBuffer.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/mediasource/SourceBufferList.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/mediasource/WebKitSourceBufferList.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/mediastream/MediaStream.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/mediastream/MediaStream.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/modules/mediastream/RTCDTMFSender.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/mediastream/RTCDTMFSender.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/modules/mediastream/RTCDataChannel.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/mediastream/RTCDataChannel.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/modules/mediastream/RTCPeerConnection.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/mediastream/RTCPeerConnection.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/modules/notifications/Notification.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/notifications/Notification.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/speech/SpeechRecognition.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/speech/SpeechRecognition.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/webaudio/AudioScheduledSourceNode.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/websockets/WebSocket.h View 3 chunks +4 lines, -2 lines 0 comments Download
M Source/modules/websockets/WebSocket.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/web/WebDOMEvent.cpp View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M Source/web/tests/CustomEventTest.cpp View 1 2 3 1 chunk +1 line, -3 lines 0 comments Download
M Source/web/tests/KeyboardTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/web/tests/WebFrameTest.cpp View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M Source/web/tests/WebInputEventConversionTest.cpp View 3 chunks +4 lines, -4 lines 0 comments Download
M public/web/WebDOMEvent.h View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M public/web/WebDOMMessageEvent.h View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 33 (0 generated)
haraken
Not ready for review. I need to fix crashes and verify that persistent handles in ...
6 years, 8 months ago (2014-03-28 06:57:28 UTC) #1
haraken
PTAL
6 years, 8 months ago (2014-03-28 12:14:32 UTC) #2
sof
https://codereview.chromium.org/216523002/diff/20001/Source/bindings/v8/WorkerScriptController.h File Source/bindings/v8/WorkerScriptController.h (right): https://codereview.chromium.org/216523002/diff/20001/Source/bindings/v8/WorkerScriptController.h#newcode114 Source/bindings/v8/WorkerScriptController.h:114: RefPtrWillBeRawPtr<ErrorEvent> m_errorEventFromImportedScript; Why is a raw pointer safe here? ...
6 years, 8 months ago (2014-03-28 12:27:17 UTC) #3
sof
https://codereview.chromium.org/216523002/diff/20001/public/web/WebDOMEvent.h File public/web/WebDOMEvent.h (right): https://codereview.chromium.org/216523002/diff/20001/public/web/WebDOMEvent.h#newcode96 public/web/WebDOMEvent.h:96: PassRefPtrWillBeRawPtr<WebCore::Event> getValue() const; Unused?
6 years, 8 months ago (2014-03-28 12:32:07 UTC) #4
haraken
https://codereview.chromium.org/216523002/diff/20001/Source/bindings/v8/WorkerScriptController.h File Source/bindings/v8/WorkerScriptController.h (right): https://codereview.chromium.org/216523002/diff/20001/Source/bindings/v8/WorkerScriptController.h#newcode114 Source/bindings/v8/WorkerScriptController.h:114: RefPtrWillBeRawPtr<ErrorEvent> m_errorEventFromImportedScript; On 2014/03/28 12:27:18, sof wrote: > Why ...
6 years, 8 months ago (2014-03-28 14:02:13 UTC) #5
sof
I haven't been able to spot any other problems. https://codereview.chromium.org/216523002/diff/20001/public/web/WebDOMEvent.h File public/web/WebDOMEvent.h (right): https://codereview.chromium.org/216523002/diff/20001/public/web/WebDOMEvent.h#newcode96 public/web/WebDOMEvent.h:96: ...
6 years, 8 months ago (2014-03-28 14:41:01 UTC) #6
haraken
Thanks sof for review! I'd be happy if one more oilpan reviewer could take a ...
6 years, 8 months ago (2014-03-31 03:53:47 UTC) #7
Mads Ager (chromium)
LGTM We need to get those ListHashSets and Deques supported on-heap. :)
6 years, 8 months ago (2014-03-31 06:38:49 UTC) #8
haraken
The CQ bit was checked by haraken@chromium.org
6 years, 8 months ago (2014-03-31 08:03:53 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/haraken@chromium.org/216523002/40001
6 years, 8 months ago (2014-03-31 08:03:57 UTC) #10
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-03-31 08:17:33 UTC) #11
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.blink on blink_presubmit
6 years, 8 months ago (2014-03-31 08:17:33 UTC) #12
haraken
tkent-san: Could you take a look at web/ and public/? I'm no rush about this ...
6 years, 8 months ago (2014-03-31 08:55:20 UTC) #13
haraken
tkent-san: ping?
6 years, 8 months ago (2014-04-01 08:34:30 UTC) #14
tkent
https://codereview.chromium.org/216523002/diff/40001/Source/core/events/DOMWindowEventQueue.h File Source/core/events/DOMWindowEventQueue.h (right): https://codereview.chromium.org/216523002/diff/40001/Source/core/events/DOMWindowEventQueue.h#newcode62 Source/core/events/DOMWindowEventQueue.h:62: ListHashSet<RefPtrWillBePersistent<Event>, 16> m_queuedEvents; Does it work well even if ...
6 years, 8 months ago (2014-04-02 06:22:00 UTC) #15
haraken
https://codereview.chromium.org/216523002/diff/40001/Source/core/events/DOMWindowEventQueue.h File Source/core/events/DOMWindowEventQueue.h (right): https://codereview.chromium.org/216523002/diff/40001/Source/core/events/DOMWindowEventQueue.h#newcode62 Source/core/events/DOMWindowEventQueue.h:62: ListHashSet<RefPtrWillBePersistent<Event>, 16> m_queuedEvents; On 2014/04/02 06:22:01, tkent wrote: > ...
6 years, 8 months ago (2014-04-02 06:27:59 UTC) #16
Mads Ager (chromium)
https://codereview.chromium.org/216523002/diff/40001/Source/core/events/DOMWindowEventQueue.h File Source/core/events/DOMWindowEventQueue.h (right): https://codereview.chromium.org/216523002/diff/40001/Source/core/events/DOMWindowEventQueue.h#newcode62 Source/core/events/DOMWindowEventQueue.h:62: ListHashSet<RefPtrWillBePersistent<Event>, 16> m_queuedEvents; On 2014/04/02 06:22:01, tkent wrote: > ...
6 years, 8 months ago (2014-04-02 06:31:44 UTC) #17
haraken
tkent-san: Thanks for review! Rebased with ToT. PTAL. https://codereview.chromium.org/216523002/diff/40001/public/web/WebDOMEvent.h File public/web/WebDOMEvent.h (right): https://codereview.chromium.org/216523002/diff/40001/public/web/WebDOMEvent.h#newcode96 public/web/WebDOMEvent.h:96: PassRefPtrWillBeRawPtr<WebCore::Event> ...
6 years, 8 months ago (2014-04-02 09:02:32 UTC) #18
tkent
lgtm
6 years, 8 months ago (2014-04-02 09:10:48 UTC) #19
haraken
The CQ bit was checked by haraken@chromium.org
6 years, 8 months ago (2014-04-02 09:11:09 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/haraken@chromium.org/216523002/60001
6 years, 8 months ago (2014-04-02 09:11:15 UTC) #21
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-02 10:24:04 UTC) #22
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.blink on linux_blink_dbg
6 years, 8 months ago (2014-04-02 10:24:04 UTC) #23
haraken
The CQ bit was checked by haraken@chromium.org
6 years, 8 months ago (2014-04-03 04:03:59 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/haraken@chromium.org/216523002/60001
6 years, 8 months ago (2014-04-03 04:04:01 UTC) #25
commit-bot: I haz the power
Change committed as 170733
6 years, 8 months ago (2014-04-03 05:46:29 UTC) #26
haraken
It turned out that the cause of the crashes caused by this CL was uninitialized ...
6 years, 8 months ago (2014-04-03 10:39:30 UTC) #27
Mads Ager (chromium)
If it passes all tests there is no reason to split it. Go ahead and ...
6 years, 8 months ago (2014-04-03 10:52:10 UTC) #28
haraken
The CQ bit was checked by haraken@chromium.org
6 years, 8 months ago (2014-04-03 10:57:23 UTC) #29
haraken
On 2014/04/03 10:52:10, Mads Ager (chromium) wrote: > If it passes all tests there is ...
6 years, 8 months ago (2014-04-03 10:57:31 UTC) #30
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/haraken@chromium.org/216523002/80001
6 years, 8 months ago (2014-04-03 10:57:34 UTC) #31
haraken
On 2014/04/03 10:57:31, haraken wrote: > On 2014/04/03 10:52:10, Mads Ager (chromium) wrote: > > ...
6 years, 8 months ago (2014-04-03 10:58:33 UTC) #32
commit-bot: I haz the power
6 years, 8 months ago (2014-04-03 12:05:08 UTC) #33
Message was sent while issue was closed.
Change committed as 170769

Powered by Google App Engine
This is Rietveld 408576698