|
[WIP] [DeviceLight API]
corresponding Blink side change : https://codereview.chromium.org/143823004/
Implement the content/renderer and content/browser part of the Device Light API.
Mostly added the content side plumbing like event pump
As of now I am trying to follow DeviceMotion/DeviceOrientation
Add the actual data fetchers for Android. We are utilizing
the same infrastructure/ plumbing done by Device Motion and Orientation work
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+489 lines, -53 lines) |
Patch |
 |
A |
content/browser/device_light/device_light_message_filter.h
|
View
|
|
1 chunk |
+38 lines, -0 lines |
0 comments
|
Download
|
 |
A |
content/browser/device_light/device_light_message_filter.cc
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+66 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/data_fetcher_shared_memory.h
|
View
|
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/data_fetcher_shared_memory_android.cc
|
View
|
1
2
3
|
3 chunks |
+9 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/data_fetcher_shared_memory_base.h
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+1 line, -2 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/data_fetcher_shared_memory_base.cc
|
View
|
1
2
3
4
5
6
7
8
|
5 chunks |
+6 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/data_fetcher_shared_memory_base_unittest.cc
|
View
|
1
2
3
4
5
6
7
8
|
3 chunks |
+0 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/data_fetcher_shared_memory_default.cc
|
View
|
1
2
3
4
5
6
7
8
|
4 chunks |
+17 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/data_fetcher_shared_memory_win.cc
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+0 lines, -1 line |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/device_inertial_sensor_browsertest.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
7 chunks |
+21 lines, -4 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/device_inertial_sensor_service.h
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/device_inertial_sensor_service.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
3 chunks |
+10 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/device_motion_message_filter.h
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/inertial_sensor_consts.h
|
View
|
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/sensor_manager_android.h
|
View
|
1
2
3
4
5
6
7
8
|
6 chunks |
+20 lines, -7 lines |
0 comments
|
Download
|
 |
M |
content/browser/device_orientation/sensor_manager_android.cc
|
View
|
1
2
3
4
5
6
7
8
|
3 chunks |
+58 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/renderer_host/render_process_host_impl.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/common/content_message_generator.h
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
A |
content/common/device_light/device_light_hardware_buffer.h
|
View
|
|
1 chunk |
+17 lines, -0 lines |
0 comments
|
Download
|
 |
A + |
content/common/device_light/device_light_messages.h
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+13 lines, -8 lines |
0 comments
|
Download
|
 |
M |
content/content_browser.gypi
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/content_common.gypi
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/content_renderer.gypi
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/public/android/java/src/org/chromium/content/browser/DeviceMotionAndOrientation.java
|
View
|
1
2
3
4
5
6
7
8
9
10
|
9 chunks |
+48 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/public/test/layouttest_support.h
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
A + |
content/renderer/device_light/device_light_event_pump.h
|
View
|
|
2 chunks |
+14 lines, -15 lines |
0 comments
|
Download
|
 |
A |
content/renderer/device_light/device_light_event_pump.cc
|
View
|
|
1 chunk |
+62 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/renderer/renderer_webkitplatformsupport_impl.h
|
View
|
1
2
3
4
5
6
7
8
9
10
|
4 chunks |
+7 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/renderer/renderer_webkitplatformsupport_impl.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
4 chunks |
+30 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/shell/renderer/test_runner/WebTestDelegate.h
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/shell/renderer/test_runner/test_runner.h
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/shell/renderer/test_runner/test_runner.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
4 chunks |
+16 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/shell/renderer/webkit_test_runner.h
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
content/shell/renderer/webkit_test_runner.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/test/layouttest_support.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+5 lines, -0 lines |
0 comments
|
Download
|
 |
M |
ipc/ipc_message_start.h
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
Total messages: 5 (0 generated)
|