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

Issue 2387883002: Use float for scroll offset. (Closed)

Created:
4 years, 2 months ago by szager1
Modified:
4 years, 2 months ago
CC:
chromium-reviews, szager+layoutwatch_chromium.org, blink-reviews-platform-graphics_chromium.org, nzolghadr+blinkwatch_chromium.org, dshwang, eae+blinkwatch, shans, apavlov+blink_chromium.org, dmazzoni+watch_chromium.org, kinuko+watch, Stephen Chennney, rwlbuis, caseq+blink_chromium.org, krit, drott+blinkwatch_chromium.org, aboxhall, aboxhall+watch_chromium.org, blink-reviews-html_chromium.org, Justin Novosad, blink-reviews-dom_chromium.org, dglazkov+blink, je_julie, gavinp+loader_chromium.org, jchaffraix+rendering, blink-reviews-paint_chromium.org, loading-reviews_chromium.org, ajuma+watch_chromium.org, blink-reviews-api_chromium.org, Eric Willigers, kenneth.christiansen, rjwright, blink-reviews-style_chromium.org, zoltan1, blink-reviews-layout_chromium.org, sof, jbroman, yuzo+watch_chromium.org, blink-reviews, dmazzoni, lushnikov+blink_chromium.org, darktears, haraken, Nate Chapin, pdr+graphicswatchlist_chromium.org, danakj+watch_chromium.org, devtools-reviews_chromium.org, tyoshino+watch_chromium.org, dtapuska+blinkwatch_chromium.org, Rik, blink-reviews-animation_chromium.org, pdr+renderingwatchlist_chromium.org, nektar+watch_chromium.org, leviw+renderwatch, slimming-paint-reviews_chromium.org, blink-layers+watch_chromium.org, pfeldman+blink_chromium.org, nektarios, f(malita), dtseng+watch_chromium.org, cc-bugs_chromium.org, kozyatinskiy+blink_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Use float for scroll offset. Previously, scroll offsets were stored in a mix of float, double, and int. BUG=470718 R=skobes@chromium.org,bokan@chromium.org,aelias@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Committed: https://crrev.com/80e6cf8d1fa064239b919bd111dc9304209dc9d3 Cr-Commit-Position: refs/heads/master@{#423772}

Patch Set 1 #

Total comments: 37

Patch Set 2 : rebase #

Patch Set 3 : tweaks #

Patch Set 4 : rebase #

Total comments: 13

Patch Set 5 : tweaks and docs #

Total comments: 4

Patch Set 6 : Fix README.md #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1806 lines, -1891 lines) Patch
M third_party/WebKit/LayoutTests/fast/css/zoom-body-scroll.html View 2 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/LayoutTests/fast/css/zoom-body-scroll-expected.txt View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Element.h View 1 2 3 4 5 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Element.cpp View 1 2 3 4 5 8 chunks +23 lines, -24 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ElementRareData.h View 1 2 3 4 5 2 chunks +6 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Touch.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/TreeScope.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/MouseRelatedEvent.cpp View 1 2 3 4 5 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/frame/DOMVisualViewport.h View 1 2 3 4 2 chunks +5 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/frame/DOMVisualViewport.cpp View 5 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/frame/FrameView.h View 1 2 3 4 5 9 chunks +21 lines, -34 lines 0 comments Download
M third_party/WebKit/Source/core/frame/FrameView.cpp View 1 2 3 4 5 16 chunks +36 lines, -49 lines 0 comments Download
M third_party/WebKit/Source/core/frame/FrameViewTest.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp View 1 2 3 4 5 6 chunks +16 lines, -16 lines 0 comments Download
M third_party/WebKit/Source/core/frame/LocalFrame.cpp View 1 2 3 4 5 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/frame/RootFrameViewport.h View 1 2 3 4 5 3 chunks +12 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/core/frame/RootFrameViewport.cpp View 1 2 3 4 5 9 chunks +77 lines, -80 lines 0 comments Download
M third_party/WebKit/Source/core/frame/RootFrameViewportTest.cpp View 1 2 3 4 5 15 chunks +125 lines, -155 lines 0 comments Download
M third_party/WebKit/Source/core/frame/VisualViewport.h View 1 2 3 4 5 8 chunks +12 lines, -20 lines 0 comments Download
M third_party/WebKit/Source/core/frame/VisualViewport.cpp View 1 2 3 4 5 16 chunks +47 lines, -69 lines 0 comments Download
M third_party/WebKit/Source/core/html/ImageDocument.cpp View 1 2 3 4 5 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp View 1 2 3 4 5 1 chunk +2 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/input/EventHandler.cpp View 1 2 3 4 5 1 chunk +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/input/EventHandlerTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/input/PointerEventManager.cpp View 1 2 3 4 5 1 chunk +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutBlock.cpp View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp View 1 2 3 4 5 2 chunks +3 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutBox.h View 1 4 5 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutBox.cpp View 1 2 3 4 5 10 chunks +41 lines, -39 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp View 1 2 3 4 2 chunks +3 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutBoxModelObjectTest.cpp View 1 2 3 4 5 chunks +15 lines, -15 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutDeprecatedFlexibleBox.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutPart.cpp View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp View 1 chunk +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutView.cpp View 1 2 3 4 5 3 chunks +4 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/layout/MapCoordinatesTest.cpp View 6 chunks +11 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp View 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/README.md View 1 2 3 4 5 2 chunks +51 lines, -54 lines 0 comments Download
M third_party/WebKit/Source/core/layout/ScrollAnchor.cpp View 3 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/layout/ScrollAnchorTest.cpp View 37 chunks +68 lines, -68 lines 0 comments Download
M third_party/WebKit/Source/core/layout/VisualRectMappingTest.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp View 1 2 3 4 5 5 chunks +14 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/core/layout/compositing/CompositedLayerMappingTest.cpp View 1 2 3 4 5 8 chunks +13 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp View 1 2 3 4 5 2 chunks +2 lines, -2 lines 0 comments Download
A third_party/WebKit/Source/core/layout/doc/ltr-tb-scroll.png View 1 2 3 4 Binary file 0 comments Download
A third_party/WebKit/Source/core/layout/doc/rtl-bt-scroll.png View 1 2 3 4 Binary file 0 comments Download
A third_party/WebKit/Source/core/layout/doc/rtl-tb-scroll.png View 1 2 3 4 Binary file 0 comments Download
M third_party/WebKit/Source/core/loader/FrameLoader.cpp View 1 2 3 4 5 4 chunks +28 lines, -23 lines 0 comments Download
M third_party/WebKit/Source/core/loader/HistoryItem.h View 3 chunks +7 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/loader/HistoryItem.cpp View 1 1 chunk +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/page/Page.cpp View 1 2 3 4 5 1 chunk +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/page/SpatialNavigation.cpp View 1 2 3 4 5 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/paint/BackgroundImageGeometry.cpp View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/paint/FramePainter.cpp View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp View 1 2 3 4 5 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h View 1 2 3 4 5 9 chunks +30 lines, -37 lines 0 comments Download
M third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp View 1 2 3 4 5 16 chunks +59 lines, -65 lines 0 comments Download
M third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.cpp View 1 2 3 4 5 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/style/ComputedStyle.h View 1 2 3 4 5 1 chunk +3 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/testing/Internals.h View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/testing/Internals.cpp View 1 2 3 4 5 3 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/modules/accessibility/AXObject.cpp View 1 8 chunks +27 lines, -27 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/CompositorMutableState.h View 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/CompositorMutableState.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp View 1 2 3 4 5 1 chunk +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayerTest.cpp View 1 2 3 4 2 chunks +11 lines, -12 lines 0 comments Download
M third_party/WebKit/Source/platform/mac/ScrollAnimatorMac.h View 4 chunks +9 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/platform/mac/ScrollAnimatorMac.mm View 1 2 3 4 5 14 chunks +77 lines, -58 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ProgrammaticScrollAnimator.h View 3 chunks +4 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ProgrammaticScrollAnimator.cpp View 6 chunks +17 lines, -17 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollAnimator.h View 3 chunks +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollAnimator.cpp View 1 2 3 4 5 13 chunks +39 lines, -39 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h View 4 chunks +9 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.cpp View 3 chunks +20 lines, -21 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollAnimatorCompositorCoordinator.h View 1 2 3 4 5 5 chunks +20 lines, -9 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollAnimatorCompositorCoordinator.cpp View 1 2 chunks +11 lines, -12 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollAnimatorTest.cpp View 1 25 chunks +114 lines, -141 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollTypes.h View 1 2 3 4 2 chunks +19 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollableArea.h View 1 2 3 4 12 chunks +54 lines, -54 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollableArea.cpp View 1 2 3 4 5 9 chunks +60 lines, -74 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollableAreaTest.cpp View 1 9 chunks +13 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/Scrollbar.cpp View 1 4 chunks +28 lines, -27 lines 0 comments Download
M third_party/WebKit/Source/platform/scroll/ScrollbarTestSuite.h View 1 3 chunks +15 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/web/DevToolsEmulator.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/web/ExternalPopupMenuTest.cpp View 1 chunk +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/web/FindInPageCoordinates.cpp View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/web/LinkHighlightImpl.cpp View 1 2 3 4 1 chunk +4 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/web/ResizeViewportAnchor.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/web/ResizeViewportAnchor.cpp View 3 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/web/RotationViewportAnchor.cpp View 1 4 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/web/WebHistoryItem.cpp View 1 chunk +6 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/web/WebLocalFrameImpl.cpp View 1 2 3 4 5 1 chunk +5 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/web/WebViewImpl.cpp View 1 2 3 4 5 4 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/web/tests/FrameThrottlingTest.cpp View 1 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/web/tests/ProgrammaticScrollTest.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/web/tests/RootScrollerTest.cpp View 1 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/web/tests/TopControlsTest.cpp View 1 2 20 chunks +67 lines, -67 lines 0 comments Download
M third_party/WebKit/Source/web/tests/TouchActionTest.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/web/tests/VisualViewportTest.cpp View 1 2 44 chunks +177 lines, -172 lines 0 comments Download
M third_party/WebKit/Source/web/tests/WebFrameTest.cpp View 1 2 3 4 5 8 chunks +21 lines, -20 lines 0 comments Download
M third_party/WebKit/Source/web/tests/WebViewTest.cpp View 1 7 chunks +21 lines, -17 lines 0 comments Download
M ui/gfx/geometry/scroll_offset.h View 1 2 3 4 3 chunks +13 lines, -9 lines 0 comments Download
M ui/gfx/geometry/scroll_offset.cc View 1 chunk +1 line, -1 line 0 comments Download
M ui/gfx/geometry/scroll_offset_unittest.cc View 3 chunks +35 lines, -35 lines 0 comments Download

Messages

Total messages: 43 (23 generated)
szager1
+danakj for ui/gfx +pdr for WebKit/Source/platform, WebKit/Source/web, WebKit/public
4 years, 2 months ago (2016-10-01 18:10:14 UTC) #7
bokan
https://codereview.chromium.org/2387883002/diff/1/third_party/WebKit/Source/core/dom/TreeScope.cpp File third_party/WebKit/Source/core/dom/TreeScope.cpp (right): https://codereview.chromium.org/2387883002/diff/1/third_party/WebKit/Source/core/dom/TreeScope.cpp#newcode223 third_party/WebKit/Source/core/dom/TreeScope.cpp:223: pointInDocument.moveBy(FloatPoint(frameView->scrollOffset())); use move() instead, it takes a FloatSize https://codereview.chromium.org/2387883002/diff/1/third_party/WebKit/Source/core/events/MouseRelatedEvent.cpp ...
4 years, 2 months ago (2016-10-02 19:47:51 UTC) #10
dmazzoni
lgtm for modules/accessibility
4 years, 2 months ago (2016-10-03 03:46:39 UTC) #12
danakj
cc and ui/gfx LGTM https://codereview.chromium.org/2387883002/diff/1/ui/gfx/geometry/scroll_offset.h File ui/gfx/geometry/scroll_offset.h (right): https://codereview.chromium.org/2387883002/diff/1/ui/gfx/geometry/scroll_offset.h#newcode75 ui/gfx/geometry/scroll_offset.h:75: float y_; On 2016/10/02 19:47:51, ...
4 years, 2 months ago (2016-10-03 21:24:41 UTC) #13
szager1
https://codereview.chromium.org/2387883002/diff/1/third_party/WebKit/Source/core/dom/TreeScope.cpp File third_party/WebKit/Source/core/dom/TreeScope.cpp (right): https://codereview.chromium.org/2387883002/diff/1/third_party/WebKit/Source/core/dom/TreeScope.cpp#newcode223 third_party/WebKit/Source/core/dom/TreeScope.cpp:223: pointInDocument.moveBy(FloatPoint(frameView->scrollOffset())); On 2016/10/02 19:47:50, bokan wrote: > use move() ...
4 years, 2 months ago (2016-10-05 07:43:36 UTC) #20
skobes
https://codereview.chromium.org/2387883002/diff/60001/third_party/WebKit/Source/platform/scroll/ScrollTypes.h File third_party/WebKit/Source/platform/scroll/ScrollTypes.h (right): https://codereview.chromium.org/2387883002/diff/60001/third_party/WebKit/Source/platform/scroll/ScrollTypes.h#newcode34 third_party/WebKit/Source/platform/scroll/ScrollTypes.h:34: typedef float ScrollUnit; I'm not sure we get much ...
4 years, 2 months ago (2016-10-05 21:19:28 UTC) #23
szager1
PTAL, I updated README.md and added some pictures to the docs/ director. https://codereview.chromium.org/2387883002/diff/60001/third_party/WebKit/Source/platform/scroll/ScrollTypes.h File third_party/WebKit/Source/platform/scroll/ScrollTypes.h ...
4 years, 2 months ago (2016-10-06 00:11:57 UTC) #24
skobes
https://codereview.chromium.org/2387883002/diff/60001/third_party/WebKit/Source/platform/scroll/ScrollableArea.h File third_party/WebKit/Source/platform/scroll/ScrollableArea.h (right): https://codereview.chromium.org/2387883002/diff/60001/third_party/WebKit/Source/platform/scroll/ScrollableArea.h#newcode81 third_party/WebKit/Source/platform/scroll/ScrollableArea.h:81: virtual void scrollBy(const ScrollOffset&, On 2016/10/06 00:11:57, szager1 wrote: ...
4 years, 2 months ago (2016-10-06 20:06:54 UTC) #25
szager1
https://codereview.chromium.org/2387883002/diff/80001/third_party/WebKit/Source/core/layout/README.md File third_party/WebKit/Source/core/layout/README.md (right): https://codereview.chromium.org/2387883002/diff/80001/third_party/WebKit/Source/core/layout/README.md#newcode43 third_party/WebKit/Source/core/layout/README.md:43: Unfortunately, the geometric abstraction of origin, offset, and position ...
4 years, 2 months ago (2016-10-06 21:07:03 UTC) #26
szager1
After some offline discussion with skobes@, I modified the README.md to reflect reality. PTAL
4 years, 2 months ago (2016-10-06 22:00:14 UTC) #27
skobes
lgtm :)
4 years, 2 months ago (2016-10-06 22:10:40 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2387883002/100001
4 years, 2 months ago (2016-10-06 22:12:12 UTC) #31
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/275902)
4 years, 2 months ago (2016-10-06 22:25:51 UTC) #33
szager1
pdr@, I'm waiting for your OWNERS powers
4 years, 2 months ago (2016-10-06 22:31:26 UTC) #34
bokan
lgtm (but you still need pdr for platform) https://codereview.chromium.org/2387883002/diff/1/third_party/WebKit/Source/core/layout/LayoutBox.h File third_party/WebKit/Source/core/layout/LayoutBox.h (right): https://codereview.chromium.org/2387883002/diff/1/third_party/WebKit/Source/core/layout/LayoutBox.h#newcode550 third_party/WebKit/Source/core/layout/LayoutBox.h:550: void ...
4 years, 2 months ago (2016-10-06 22:32:17 UTC) #35
pdr.
On 2016/10/06 at 22:31:26, szager wrote: > pdr@, I'm waiting for your OWNERS powers I'd ...
4 years, 2 months ago (2016-10-06 22:37:24 UTC) #36
pdr.
LGTM
4 years, 2 months ago (2016-10-06 22:37:37 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2387883002/100001
4 years, 2 months ago (2016-10-07 01:13:29 UTC) #39
commit-bot: I haz the power
Committed patchset #6 (id:100001)
4 years, 2 months ago (2016-10-07 01:22:54 UTC) #41
commit-bot: I haz the power
4 years, 2 months ago (2016-10-07 01:25:02 UTC) #43
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/80e6cf8d1fa064239b919bd111dc9304209dc9d3
Cr-Commit-Position: refs/heads/master@{#423772}

Powered by Google App Engine
This is Rietveld 408576698