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

Issue 14460010: Implement the Blink part of the Device Motion API. (Closed)

Created:
7 years, 7 months ago by timvolodine
Modified:
7 years, 6 months ago
CC:
blink-reviews, jamesr, jeez, Miguel Garcia, dcheng
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Implement the Blink part of the Device Motion API. The implementation uses the Platform layer approach with push semantics, i.e. Blink registers a listener to receive updates when new motion data is available. This patch contains changes to both the device_orientation module and the WebKit plumbing. BUG=135804 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=151544

Patch Set 1 #

Patch Set 2 : fixed similarity diff #

Total comments: 44

Patch Set 3 : fixed comments and removed reduntant core/platform layer classes #

Total comments: 14

Patch Set 4 : fixed Adam's comments #

Total comments: 32

Patch Set 5 : fixed comments #

Total comments: 8

Patch Set 6 : fixed re-entrancy issue #

Total comments: 29

Patch Set 7 : fixed Peter's comments #

Patch Set 8 : added tests #

Patch Set 9 : attempt rebase #

Patch Set 10 : rebased + fixed include sorting #

Patch Set 11 : fixed and extended test #

Patch Set 12 : fixed add-listener-from-callback-expected.txt #

Total comments: 4

Patch Set 13 : added testing api #

Patch Set 14 : added MockWebDeviceMotionHandler and methods to set in in the platform #

Total comments: 6

Patch Set 15 : made WebDeviceMotionData more "POD-ish" #

Total comments: 8

Patch Set 16 : fixed Darin's comments #

Total comments: 2

Patch Set 17 : removed spurious forward declare of provider in Platform.h #

Patch Set 18 : got rid of WebDeviceMotionProvider #

Total comments: 2

Patch Set 19 : moved tests to be treated in a separate CL #

Total comments: 14

Patch Set 20 : processed comments #

Patch Set 21 : similarity=90 #

Total comments: 2

Patch Set 22 : shared() -> instance() #

Total comments: 8

Patch Set 23 : fixed Adam's comments #

Patch Set 24 : added a comment wrt memset in WebDeviceMotionData.cpp #

Patch Set 25 : rebased #

Patch Set 26 : include <string.h> for memset to compile #

Patch Set 27 : added platform files to Platform.gypi #

Patch Set 28 : removed files incorrectly listed in WebKit.gyp #

Unified diffs Side-by-side diffs Delta from patch set Stats (+493 lines, -41 lines) Patch
M Source/Platform/Platform.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +2 lines, -0 lines 0 comments Download
A Source/Platform/chromium/public/WebDeviceMotionData.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +1 line, -0 lines 0 comments Download
A Source/Platform/chromium/public/WebDeviceMotionListener.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/core.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/page/DOMWindow.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 3 chunks +6 lines, -6 lines 0 comments Download
A Source/core/platform/chromium/support/WebDeviceMotionData.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +47 lines, -0 lines 0 comments Download
M Source/modules/device_orientation/DeviceMotionController.h View 1 2 3 4 5 6 7 8 9 1 chunk +23 lines, -13 lines 0 comments Download
M Source/modules/device_orientation/DeviceMotionController.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +52 lines, -22 lines 0 comments Download
M Source/modules/device_orientation/DeviceMotionData.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +5 lines, -0 lines 0 comments Download
M Source/modules/device_orientation/DeviceMotionData.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +19 lines, -0 lines 0 comments Download
A Source/modules/device_orientation/DeviceMotionDispatcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +79 lines, -0 lines 0 comments Download
A Source/modules/device_orientation/DeviceMotionDispatcher.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +121 lines, -0 lines 0 comments Download
M Source/modules/modules.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +2 lines, -0 lines 0 comments Download
M public/platform/Platform.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2 chunks +8 lines, -0 lines 0 comments Download
A public/platform/WebDeviceMotionData.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +80 lines, -0 lines 0 comments Download
A public/platform/WebDeviceMotionListener.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +46 lines, -0 lines 0 comments Download

Messages

Total messages: 72 (0 generated)
timvolodine
Reimplementation of the Blink part for Device Motion without using the 'pump'. The approach uses ...
7 years, 7 months ago (2013-04-29 15:54:36 UTC) #1
Peter Beverloo
I'm a bit worried about all the code that has to be added to core/platform/, ...
7 years, 7 months ago (2013-04-29 17:38:03 UTC) #2
jamesr
The code in /modules/ can depend directly on Platform/chromium/public/. Why do you need new code ...
7 years, 7 months ago (2013-04-29 17:44:48 UTC) #3
timvolodine
On 2013/04/29 17:44:48, jamesr wrote: > The code in /modules/ can depend directly on Platform/chromium/public/. ...
7 years, 7 months ago (2013-04-29 17:49:22 UTC) #4
abarth-chromium
https://codereview.chromium.org/14460010/diff/2001/Source/WebKit/chromium/src/WebViewImpl.cpp File Source/WebKit/chromium/src/WebViewImpl.cpp (right): https://codereview.chromium.org/14460010/diff/2001/Source/WebKit/chromium/src/WebViewImpl.cpp#newcode41 Source/WebKit/chromium/src/WebViewImpl.cpp:41: #include "modules/device_orientation/DeviceMotionController.h" Please put this include in alphabetical order. ...
7 years, 7 months ago (2013-04-29 20:32:20 UTC) #5
timvolodine
https://codereview.chromium.org/14460010/diff/2001/Source/Platform/chromium/public/WebDeviceMotionData.h File Source/Platform/chromium/public/WebDeviceMotionData.h (right): https://codereview.chromium.org/14460010/diff/2001/Source/Platform/chromium/public/WebDeviceMotionData.h#newcode41 Source/Platform/chromium/public/WebDeviceMotionData.h:41: #pragma pack(push, 1) On 2013/04/29 17:38:03, Peter Beverloo wrote: ...
7 years, 7 months ago (2013-04-30 12:40:18 UTC) #6
timvolodine
Hi Adam, Would appreciate if you could comment on this new patch - without the ...
7 years, 7 months ago (2013-05-01 17:12:32 UTC) #7
abarth-chromium
This CL looks like it's moving in the right direction. I don't understand why you ...
7 years, 7 months ago (2013-05-06 17:04:17 UTC) #8
timvolodine
Adam, thanks for the comments. I've refactored the controller to be the supplement of ScriptExecutionContext ...
7 years, 7 months ago (2013-05-07 15:40:52 UTC) #9
abarth-chromium
This is getting close. You've got a use-after-free vulnerability that we need to take care ...
7 years, 7 months ago (2013-05-07 16:43:47 UTC) #10
timvolodine
addressed most comments, do you want the tests in this CL or should I create ...
7 years, 7 months ago (2013-05-07 19:02:30 UTC) #11
abarth-chromium
https://codereview.chromium.org/14460010/diff/38001/Source/modules/device_orientation/DeviceMotionController.cpp File Source/modules/device_orientation/DeviceMotionController.cpp (right): https://codereview.chromium.org/14460010/diff/38001/Source/modules/device_orientation/DeviceMotionController.cpp#newcode81 Source/modules/device_orientation/DeviceMotionController.cpp:81: m_document->domWindow()->dispatchEvent(event); This line is indented 8 spaces from the ...
7 years, 7 months ago (2013-05-07 20:10:01 UTC) #12
timvolodine
uploaded a re-entrancy fix, working on tests.. https://codereview.chromium.org/14460010/diff/38001/Source/modules/device_orientation/DeviceMotionController.cpp File Source/modules/device_orientation/DeviceMotionController.cpp (right): https://codereview.chromium.org/14460010/diff/38001/Source/modules/device_orientation/DeviceMotionController.cpp#newcode81 Source/modules/device_orientation/DeviceMotionController.cpp:81: m_document->domWindow()->dispatchEvent(event); On ...
7 years, 7 months ago (2013-05-08 12:19:24 UTC) #13
Peter Beverloo
https://codereview.chromium.org/14460010/diff/46001/Source/Platform/chromium/public/WebDeviceMotionData.h File Source/Platform/chromium/public/WebDeviceMotionData.h (right): https://codereview.chromium.org/14460010/diff/46001/Source/Platform/chromium/public/WebDeviceMotionData.h#newcode121 Source/Platform/chromium/public/WebDeviceMotionData.h:121: COMPILE_ASSERT(sizeof(WebDeviceMotionData) == (10*8 + 2), WebDeviceMotionData_has_wrong_size); nit: rather than ...
7 years, 7 months ago (2013-05-08 13:15:01 UTC) #14
timvolodine
https://codereview.chromium.org/14460010/diff/46001/Source/Platform/chromium/public/WebDeviceMotionData.h File Source/Platform/chromium/public/WebDeviceMotionData.h (right): https://codereview.chromium.org/14460010/diff/46001/Source/Platform/chromium/public/WebDeviceMotionData.h#newcode121 Source/Platform/chromium/public/WebDeviceMotionData.h:121: COMPILE_ASSERT(sizeof(WebDeviceMotionData) == (10*8 + 2), WebDeviceMotionData_has_wrong_size); On 2013/05/08 13:15:01, ...
7 years, 7 months ago (2013-05-09 10:08:28 UTC) #15
Peter Beverloo
https://codereview.chromium.org/14460010/diff/46001/Source/core/page/DOMWindow.cpp File Source/core/page/DOMWindow.cpp (right): https://codereview.chromium.org/14460010/diff/46001/Source/core/page/DOMWindow.cpp#newcode1540 Source/core/page/DOMWindow.cpp:1540: if (DeviceMotionController* controller = DeviceMotionController::from(document())) On 2013/05/09 10:08:28, timvolodine ...
7 years, 7 months ago (2013-05-09 11:31:37 UTC) #16
timvolodine
On 2013/05/09 11:31:37, Peter Beverloo wrote: > https://codereview.chromium.org/14460010/diff/46001/Source/core/page/DOMWindow.cpp > File Source/core/page/DOMWindow.cpp (right): > > https://codereview.chromium.org/14460010/diff/46001/Source/core/page/DOMWindow.cpp#newcode1540 ...
7 years, 7 months ago (2013-05-09 13:42:03 UTC) #17
abarth-chromium
Please use Document or ScriptExecutionContext rather than DOMWindow. The DOMWindow object is a slippery beast. ...
7 years, 7 months ago (2013-05-09 15:08:12 UTC) #18
timvolodine
Hi Adam, I've added a layout test, which does not really inject anything, rather uses ...
7 years, 7 months ago (2013-05-13 16:40:13 UTC) #19
abarth-chromium
https://codereview.chromium.org/14460010/diff/67001/Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp File Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp (right): https://codereview.chromium.org/14460010/diff/67001/Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp#newcode65 Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:65: WebRuntimeFeatures::enableDeviceMotion(true); In RuntimeEnabledFeatures.in, you should mark device motion as ...
7 years, 7 months ago (2013-05-13 18:39:55 UTC) #20
timvolodine
Adam, thanks for comments. I've implemented the new approach by setting mock device motion handler ...
7 years, 7 months ago (2013-05-14 18:07:46 UTC) #21
darin (slow to review)
https://codereview.chromium.org/14460010/diff/74001/Source/Platform/chromium/public/WebDeviceMotionData.h File Source/Platform/chromium/public/WebDeviceMotionData.h (right): https://codereview.chromium.org/14460010/diff/74001/Source/Platform/chromium/public/WebDeviceMotionData.h#newcode48 Source/Platform/chromium/public/WebDeviceMotionData.h:48: void setAccelerationX(double); these methods need to be exported using ...
7 years, 7 months ago (2013-05-14 18:13:37 UTC) #22
timvolodine
Darin, thanks for comments! Would be great to get this patch in. So let me ...
7 years, 7 months ago (2013-05-15 12:34:34 UTC) #23
timvolodine
ping :) can we LGTM this ?
7 years, 7 months ago (2013-05-16 17:30:26 UTC) #24
abarth-chromium
I'll let darin do the official review.
7 years, 7 months ago (2013-05-16 17:36:25 UTC) #25
darin (slow to review)
On 2013/05/15 12:34:34, timvolodine wrote: > Darin, thanks for comments! > > Would be great ...
7 years, 7 months ago (2013-05-16 17:53:27 UTC) #26
darin (slow to review)
I should add that if your goal is to make WebDeviceMotionData be something suitable for ...
7 years, 7 months ago (2013-05-16 17:56:54 UTC) #27
timvolodine
On 2013/05/16 17:53:27, darin wrote: > On 2013/05/15 12:34:34, timvolodine wrote: > > Darin, thanks ...
7 years, 7 months ago (2013-05-16 19:09:13 UTC) #28
timvolodine
On 2013/05/16 17:56:54, darin wrote: > I should add that if your goal is to ...
7 years, 7 months ago (2013-05-16 19:10:56 UTC) #29
darin (slow to review)
https://codereview.chromium.org/14460010/diff/58003/Source/Platform/chromium/public/WebDeviceMotionData.h File Source/Platform/chromium/public/WebDeviceMotionData.h (right): https://codereview.chromium.org/14460010/diff/58003/Source/Platform/chromium/public/WebDeviceMotionData.h#newcode47 Source/Platform/chromium/public/WebDeviceMotionData.h:47: WebDeviceMotionData(); this constructor needs to be exported so Chromium ...
7 years, 7 months ago (2013-05-16 19:41:15 UTC) #30
timvolodine
https://codereview.chromium.org/14460010/diff/58003/Source/Platform/chromium/public/WebDeviceMotionData.h File Source/Platform/chromium/public/WebDeviceMotionData.h (right): https://codereview.chromium.org/14460010/diff/58003/Source/Platform/chromium/public/WebDeviceMotionData.h#newcode47 Source/Platform/chromium/public/WebDeviceMotionData.h:47: WebDeviceMotionData(); On 2013/05/16 19:41:15, darin wrote: > this constructor ...
7 years, 7 months ago (2013-05-17 13:36:38 UTC) #31
darin (slow to review)
It seems like the provider interface is not required by any of the interfaces under ...
7 years, 7 months ago (2013-05-17 14:13:09 UTC) #32
timvolodine
On 2013/05/17 14:13:09, darin wrote: > It seems like the provider interface is not required ...
7 years, 7 months ago (2013-05-17 14:35:31 UTC) #33
timvolodine
https://codereview.chromium.org/14460010/diff/89001/Source/Platform/chromium/public/Platform.h File Source/Platform/chromium/public/Platform.h (right): https://codereview.chromium.org/14460010/diff/89001/Source/Platform/chromium/public/Platform.h#newcode58 Source/Platform/chromium/public/Platform.h:58: class WebDeviceMotionProvider; On 2013/05/17 14:13:09, darin wrote: > nit: ...
7 years, 7 months ago (2013-05-17 14:35:40 UTC) #34
darin (slow to review)
I see. I need to study that side. It is odd to put an interface ...
7 years, 7 months ago (2013-05-17 14:42:06 UTC) #35
jamesr1
You should not put test code in that class. What tests need this capability and ...
7 years, 7 months ago (2013-05-17 17:47:05 UTC) #36
timvolodine
On 2013/05/17 17:47:05, jamesr1 wrote: > You should not put test code in that class. ...
7 years, 7 months ago (2013-05-17 18:05:57 UTC) #37
timvolodine
On 2013/05/17 18:05:57, timvolodine wrote: > On 2013/05/17 17:47:05, jamesr1 wrote: > > You should ...
7 years, 7 months ago (2013-05-17 20:52:10 UTC) #38
timvolodine
Found a way to get rid of the WebDeviceMotionProvider :), please have a look.
7 years, 7 months ago (2013-05-20 13:06:26 UTC) #39
darin (slow to review)
https://codereview.chromium.org/14460010/diff/102001/Source/Platform/chromium/public/WebDeviceMotionListener.h File Source/Platform/chromium/public/WebDeviceMotionListener.h (right): https://codereview.chromium.org/14460010/diff/102001/Source/Platform/chromium/public/WebDeviceMotionListener.h#newcode44 Source/Platform/chromium/public/WebDeviceMotionListener.h:44: virtual void setListener(WebDeviceMotionListener*) = 0; This also seems wrong. ...
7 years, 7 months ago (2013-05-23 06:41:56 UTC) #40
timvolodine
https://codereview.chromium.org/14460010/diff/102001/Source/Platform/chromium/public/WebDeviceMotionListener.h File Source/Platform/chromium/public/WebDeviceMotionListener.h (right): https://codereview.chromium.org/14460010/diff/102001/Source/Platform/chromium/public/WebDeviceMotionListener.h#newcode44 Source/Platform/chromium/public/WebDeviceMotionListener.h:44: virtual void setListener(WebDeviceMotionListener*) = 0; On 2013/05/23 06:41:56, darin ...
7 years, 7 months ago (2013-05-23 11:39:26 UTC) #41
darin (slow to review)
On 2013/05/23 11:39:26, timvolodine wrote: > https://codereview.chromium.org/14460010/diff/102001/Source/Platform/chromium/public/WebDeviceMotionListener.h > File Source/Platform/chromium/public/WebDeviceMotionListener.h (right): > > https://codereview.chromium.org/14460010/diff/102001/Source/Platform/chromium/public/WebDeviceMotionListener.h#newcode44 > ...
7 years, 7 months ago (2013-05-23 14:36:49 UTC) #42
timvolodine
On 2013/05/23 14:36:49, darin wrote: > On 2013/05/23 11:39:26, timvolodine wrote: > > > https://codereview.chromium.org/14460010/diff/102001/Source/Platform/chromium/public/WebDeviceMotionListener.h ...
7 years, 7 months ago (2013-05-23 14:57:56 UTC) #43
darin (slow to review)
On 2013/05/23 14:57:56, timvolodine wrote: > On 2013/05/23 14:36:49, darin wrote: > > On 2013/05/23 ...
7 years, 7 months ago (2013-05-23 18:31:12 UTC) #44
timvolodine
On 2013/05/23 18:31:12, darin wrote: > On 2013/05/23 14:57:56, timvolodine wrote: > > On 2013/05/23 ...
7 years, 7 months ago (2013-05-23 18:48:10 UTC) #45
darin (slow to review)
https://codereview.chromium.org/14460010/diff/108001/Source/Platform/chromium/public/Platform.h File Source/Platform/chromium/public/Platform.h (right): https://codereview.chromium.org/14460010/diff/108001/Source/Platform/chromium/public/Platform.h#newcode514 Source/Platform/chromium/public/Platform.h:514: // Device Motion / Orientation ---------------------------------------- nit: convention in ...
7 years, 7 months ago (2013-05-23 19:08:08 UTC) #46
timvolodine
https://codereview.chromium.org/14460010/diff/108001/Source/Platform/chromium/public/Platform.h File Source/Platform/chromium/public/Platform.h (right): https://codereview.chromium.org/14460010/diff/108001/Source/Platform/chromium/public/Platform.h#newcode514 Source/Platform/chromium/public/Platform.h:514: // Device Motion / Orientation ---------------------------------------- On 2013/05/23 19:08:09, ...
7 years, 7 months ago (2013-05-23 19:30:30 UTC) #47
darin (slow to review)
On 2013/05/23 19:30:30, timvolodine wrote: ... > https://codereview.chromium.org/14460010/diff/108001/Source/modules/device_orientation/DeviceMotionDispatcher.cpp#newcode43 > Source/modules/device_orientation/DeviceMotionDispatcher.cpp:43: > DeviceMotionDispatcher& DeviceMotionDispatcher::shared() > On ...
7 years, 7 months ago (2013-05-23 19:52:53 UTC) #48
timvolodine
On 2013/05/23 19:52:53, darin wrote: > On 2013/05/23 19:30:30, timvolodine wrote: > ... > > ...
7 years, 7 months ago (2013-05-23 20:12:51 UTC) #49
timvolodine
ping :) ?
7 years, 7 months ago (2013-05-24 16:05:11 UTC) #50
abarth-chromium
On 2013/05/23 20:12:51, timvolodine wrote: > I remember getting this comment to use "shared()" from ...
7 years, 7 months ago (2013-05-24 16:55:25 UTC) #51
timvolodine
On 2013/05/24 16:55:25, abarth wrote: > On 2013/05/23 20:12:51, timvolodine wrote: > > I remember ...
7 years, 7 months ago (2013-05-24 17:02:09 UTC) #52
abarth-chromium
https://codereview.chromium.org/14460010/diff/123001/Source/modules/device_orientation/DeviceMotionDispatcher.h File Source/modules/device_orientation/DeviceMotionDispatcher.h (right): https://codereview.chromium.org/14460010/diff/123001/Source/modules/device_orientation/DeviceMotionDispatcher.h#newcode52 Source/modules/device_orientation/DeviceMotionDispatcher.h:52: static DeviceMotionDispatcher& shared(); instance() is fine.
7 years, 7 months ago (2013-05-24 17:23:26 UTC) #53
timvolodine
https://codereview.chromium.org/14460010/diff/123001/Source/modules/device_orientation/DeviceMotionDispatcher.h File Source/modules/device_orientation/DeviceMotionDispatcher.h (right): https://codereview.chromium.org/14460010/diff/123001/Source/modules/device_orientation/DeviceMotionDispatcher.h#newcode52 Source/modules/device_orientation/DeviceMotionDispatcher.h:52: static DeviceMotionDispatcher& shared(); On 2013/05/24 17:23:27, abarth wrote: > ...
7 years, 7 months ago (2013-05-24 17:57:19 UTC) #54
abarth-chromium
LGTM. Some minor nits above. Thanks for iterating on this CL. I think we ended ...
7 years, 7 months ago (2013-05-24 18:26:29 UTC) #55
timvolodine
Thanks Adam and Darin for reviewing this patch! Think it looks pretty well indeed :). ...
7 years, 7 months ago (2013-05-24 19:12:41 UTC) #56
abarth-chromium
On 2013/05/24 19:12:41, timvolodine wrote: > Darin suggested to do this so, it works, it's ...
7 years, 7 months ago (2013-05-24 19:53:22 UTC) #57
darin (slow to review)
On 2013/05/24 18:26:29, abarth wrote: ... > https://codereview.chromium.org/14460010/diff/134001/Source/core/platform/chromium/support/WebDeviceMotionData.cpp > File Source/core/platform/chromium/support/WebDeviceMotionData.cpp (right): > > https://codereview.chromium.org/14460010/diff/134001/Source/core/platform/chromium/support/WebDeviceMotionData.cpp#newcode38 ...
7 years, 7 months ago (2013-05-24 21:54:00 UTC) #58
darin (slow to review)
On 2013/05/24 21:54:00, darin wrote: > On 2013/05/24 18:26:29, abarth wrote: > ... > > ...
7 years, 7 months ago (2013-05-24 21:55:36 UTC) #59
timvolodine
On 2013/05/24 21:54:00, darin wrote: > On 2013/05/24 18:26:29, abarth wrote: > ... > > ...
7 years, 6 months ago (2013-05-28 15:27:35 UTC) #60
darin (slow to review)
LGTM
7 years, 6 months ago (2013-05-28 16:31:19 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/timvolodine@chromium.org/14460010/149001
7 years, 6 months ago (2013-05-30 12:20:18 UTC) #62
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 6 months ago (2013-05-30 12:34:28 UTC) #63
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/timvolodine@chromium.org/14460010/156002
7 years, 6 months ago (2013-05-30 13:19:50 UTC) #64
commit-bot: I haz the power
Retried try job too often on win_layout_rel for step(s) webkit_lint, webkit_tests, webkit_unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_layout_rel&number=7759
7 years, 6 months ago (2013-05-30 14:09:11 UTC) #65
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/timvolodine@chromium.org/14460010/166003
7 years, 6 months ago (2013-05-30 15:13:11 UTC) #66
commit-bot: I haz the power
Retried try job too often on win_layout_rel for step(s) webkit_lint, webkit_tests, webkit_unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_layout_rel&number=7789
7 years, 6 months ago (2013-05-30 16:24:04 UTC) #67
timvolodine
On 2013/05/30 16:24:04, I haz the power (commit-bot) wrote: > Retried try job too often ...
7 years, 6 months ago (2013-05-30 16:34:18 UTC) #68
abarth-chromium
On 2013/05/30 16:34:18, timvolodine wrote: > On 2013/05/30 16:24:04, I haz the power (commit-bot) wrote: ...
7 years, 6 months ago (2013-05-30 17:29:24 UTC) #69
timvolodine
On 2013/05/30 17:29:24, abarth wrote: > On 2013/05/30 16:34:18, timvolodine wrote: > > On 2013/05/30 ...
7 years, 6 months ago (2013-05-30 17:53:51 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/timvolodine@chromium.org/14460010/156004
7 years, 6 months ago (2013-05-31 09:34:15 UTC) #71
commit-bot: I haz the power
7 years, 6 months ago (2013-05-31 11:58:47 UTC) #72
Message was sent while issue was closed.
Change committed as 151544

Powered by Google App Engine
This is Rietveld 408576698