Masayuki Nakano
|
10593f42ca
|
Bug 842927 part.9 Implement D3E KeyboardEvent.key on Gonk r=smaug+mwu
|
2013-04-24 12:49:48 +09:00 |
|
David Zbarsky
|
76ad7e5429
|
Bug 856962: Move Touch to its own file r=Ms2ger
--HG--
rename : content/events/src/nsDOMTouchEvent.cpp => content/events/src/Touch.cpp
rename : content/events/src/nsDOMTouchEvent.h => content/events/src/Touch.h
|
2013-04-05 04:49:00 -04:00 |
|
Benoit Girard
|
6ed333dbb5
|
Bug 851611 - Part 3: Rename headers. r=jrmuizel
--HG--
rename : tools/profiler/sampler.h => tools/profiler/GeckoProfiler.h
rename : tools/profiler/sps_sampler.h => tools/profiler/GeckoProfilerImpl.h
extra : rebase_source : 6ea7c660764a4390cdd8dd91561fff1d7bad6035
|
2013-03-18 15:25:50 +01:00 |
|
Benoit Girard
|
bbe4c3065e
|
Bug 851611 - Part 2: Update profiler calls. r=jrmuizel
--HG--
extra : rebase_source : f76accc3d3dd86c75cb3e9750734f23ec9c29941
|
2013-03-16 00:47:02 -04:00 |
|
Ed Morley
|
4a0f5f39ca
|
Backed out changeset c75481a07302 (bug 851611)
|
2013-03-18 14:10:35 +00:00 |
|
Ed Morley
|
47bc17c5f5
|
Backed out changeset d195190adc48 (bug 851611)
--HG--
rename : tools/profiler/GeckoProfiler.h => tools/profiler/sampler.h
rename : tools/profiler/GeckoProfilerImpl.h => tools/profiler/sps_sampler.h
|
2013-03-18 14:10:30 +00:00 |
|
Benoit Girard
|
90f13c7e56
|
Bug 851611 - Part 3: Rename headers. r=jrmuizel
--HG--
rename : tools/profiler/sampler.h => tools/profiler/GeckoProfiler.h
rename : tools/profiler/sps_sampler.h => tools/profiler/GeckoProfilerImpl.h
extra : rebase_source : 552fe1d3ff61d15b264aaf86f7c8cb4f4eff69d1
|
2013-03-18 14:41:02 +01:00 |
|
Benoit Girard
|
95a5b4c35f
|
Bug 851611 - Part 2: Update profiler calls. r=jrmuizel
--HG--
extra : rebase_source : 3032aaf7e50cdf9c350da688ec34e50a695fc7ca
|
2013-03-16 00:47:02 -04:00 |
|
Matt Brubeck
|
3a9e43ba6d
|
Bug 833663 - Set MOZ_SOURCE_TOUCH for simulated mouse events in Gonk [r=cjones]
|
2013-01-24 06:53:39 -08:00 |
|
Masayuki Nakano
|
e94e7553b3
|
Bug 822866 Make mozilla::widget::BaseEventFlags which is a POD struct for VC r=smaug
|
2012-12-28 23:13:18 +09:00 |
|
Masayuki Nakano
|
944e110e9a
|
Bug 813445 part.10 Remove NS_EVENT_FLAG_DONT_FORWARD_CROSS_PROCESS and NS_EVENT_RETARGET_TO_NON_NATIVE_ANONYMOUS r=smaug
|
2012-12-16 10:26:05 +09:00 |
|
Masayuki Nakano
|
c42d85d96f
|
Bug 813445 part.5 Remove NS_EVENT_FLAG_NO_DEFAULT and NS_EVENT_FLAG_NO_DEFAULT_CALLED_IN_CONTENT r=smaug
|
2012-12-16 10:26:04 +09:00 |
|
Michael Wu
|
a9da3c7070
|
Bug 809665 - Boot animation support for B2G, r=cjones,joe
|
2012-11-28 13:43:19 -05:00 |
|
Dave Hylands
|
4ed8addef4
|
Bug 814549 - Fix OOP app segfault when exiting the app. r=cjones
|
2012-11-27 19:07:19 -08:00 |
|
Michael Wu
|
bbaf569302
|
Backed out changeset d12d63253125 (bug 809665) for red
|
2012-11-19 19:54:33 -06:00 |
|
Michael Wu
|
cbb2656375
|
Bug 809665 - Boot animation support for B2G, r=cjones
|
2012-11-09 12:08:36 -08:00 |
|
Justin Lebar
|
8a80bd0a22
|
Bug 771195 - Fire memory pressure events on Gonk. r=dhylands
|
2012-10-31 13:29:14 -04:00 |
|
Chris Jones
|
a18a2f4b69
|
Bug 788943: Allow TabParents to capture event series for faster dispatch to subprocesses. Implements capturing of touch-event series. r=smaug sr=roc
|
2012-09-11 13:05:52 -07:00 |
|
Michael Wu
|
4cd4f58fa8
|
Bug 781039 - Mouse input support for gonk, r=cjones
|
2012-08-24 14:06:19 -04:00 |
|
Ehsan Akhgari
|
8c296bbcd4
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Justin Lebar
|
c692d7b457
|
Bug 776132 - When the gonk AppShell is trying to shut down the OrientationObserver, don't call OrientationObserver::GetInstance() -- that might /create/ an orientation observer! r=cjones
--HG--
extra : rebase_source : 72ad44ea6edf1c170cb0af6fb3e207550c7bee15
|
2012-08-18 09:55:59 -04:00 |
|
Marshall Culpepper
|
ef901c08dd
|
Bug 777514: Wake the EventHub when nsAppShell is released, allowing the b2g process to exit immediately. r=mwu
--HG--
extra : rebase_source : aec812e54c359008291d77ecd59ddf40e900c859
|
2012-08-08 14:11:04 -05:00 |
|
Jeff Muizelaar
|
b09dfa0c41
|
Bug 779329. Add labels for gonk widget. r=cjones
This makes it much clearer when we're waiting for events.
|
2012-06-27 11:55:42 -04:00 |
|
Matt Brubeck
|
133c363c04
|
Back out d567f2581365 (bug 777514) because of build failure
|
2012-07-26 11:12:52 -07:00 |
|
Marshall Culpepper
|
102ee08886
|
Bug 777514: Wake the EventHub when nsAppShell is released, allowing the b2g process to exit immediately. r=mwu
--HG--
extra : rebase_source : 59cb5258a2f69d69647c59d710bddb8f9ee9b196
|
2012-07-26 12:52:39 -05:00 |
|
Ed Morley
|
4e8827ab36
|
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
|
2012-07-20 14:32:04 +01:00 |
|
Gervase Markham
|
69110ab2b1
|
Bug 774614 - Relicense Gonk/Gecko interface code to Apache License 2.0.
|
2012-07-20 10:10:44 +01:00 |
|
Felipe Gomes
|
545c5f337b
|
Bug 775403: When touch events are being consumed by a remote frame, continue to dispatch synthesized mouse events *only* in the parent process, for the focus manager. r=cjones
|
2012-07-19 12:40:24 -07:00 |
|
Chris Jones
|
e1cee8975b
|
Back out bug 774139. r=bustage
|
2012-07-16 15:19:00 -07:00 |
|
Chris Jones
|
526631b1c6
|
Bug 774139: Forward touch events across processes. r=felipe,smaug
|
2012-07-16 14:46:29 -07:00 |
|
Ryan VanderMeulen
|
b74e4a29db
|
Revert c39d36167b99 due to a horribly munged backout.
|
2012-06-10 19:44:50 -04:00 |
|
Ryan VanderMeulen
|
061d4c2616
|
Backout the bug 754202 backout due to orange.
|
2012-06-10 19:37:47 -04:00 |
|
Jim Straus
|
dc1ddec369
|
Bug 740719 - Fix b2g-gonk shutdown hang. r=cjones
|
2012-06-09 17:07:18 -04:00 |
|
Michael Wu
|
b82a3ac93b
|
Bug 743631 - Use keyCode instead of scanCode and use a lookup table, r=cjones
|
2012-06-06 18:41:08 -04:00 |
|
Cervantes Yu
|
d0ff9d1f43
|
Bug 747873 - Provide error information on input device not properly configured. r=mwu
|
2012-04-24 17:56:15 +08:00 |
|
Gervase Markham
|
87620f5676
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Fabrice Desré
|
89be0e2c50
|
Bug 755903 - Map the hardware camera shutter button to a key event [r=mwu]
|
2012-05-16 14:52:44 -07:00 |
|
Cervantes Yu
|
9e34e52e44
|
Bug 743638: Implement orientation API backend in gonk. r=mwu
|
2012-04-20 19:43:25 +08:00 |
|
Chris Jones
|
03cf24ab29
|
Bug 745145, part 2: Implement the ScreenConfiguration hal for gonk. r=mounir
|
2012-05-08 14:36:07 -07:00 |
|
Chris Jones
|
a17a6a7858
|
Bug 745145, part 0c: Only use nsIScreen on the main thread. r=mwu
|
2012-05-08 14:36:07 -07:00 |
|
Masayuki Nakano
|
c03b9781a1
|
Bug 166240 part.7 Add support KeyboardEvent.location on Gonk r=smaug
|
2012-05-03 17:35:02 +09:00 |
|
Kan-Ru Chen
|
d2c2829225
|
Bug 745077 - Reconfigure InputReader on screen rotation. r=mwu a=b2g-only
|
2012-04-25 11:59:01 +08:00 |
|
Masayuki Nakano
|
e089b336f8
|
Bug 630811 part.2 Replace nsInputEvent::isShift, nsInputEvent::isControl, nsInputEvent::isAlt and nsInputEvent::isMeta r=smaug
|
2012-04-25 12:00:02 +09:00 |
|
Michael Wu
|
327b851ed2
|
Bug 743907 - Add cursor mapper support back to libui, r=cjones
|
2012-04-11 09:49:49 +08:00 |
|
Michael Wu
|
84af39a94d
|
Bug 739139 - Fix build of nsAppShell.cpp on gonk-gb, irc-r=cjones
|
2012-03-25 17:12:29 -07:00 |
|
Michael Wu ext:(%20%28and%20others%29)
|
f6945079a4
|
Bug 737199, part 2: Port Gonk nsAppShell to the ICS InputReader. r=cjones,gal pending-r?mwu (npotb)
|
2012-03-25 03:06:02 -07:00 |
|
Vivien Nicolas
|
6adce041c2
|
Bug 730848 - [Gonk] Generate key events instead of AppCommands for devices hw keys r=mwu
|
2012-03-01 17:03:59 +01:00 |
|
Cervantes Yu
|
ade9409d72
|
Bug 709590 - Update screen orientation from sensor notification. r=jlebar
|
2012-02-23 14:25:53 +01:00 |
|
Michael Wu
|
de65bafa67
|
Bug 714416 - Add rotation support to gonk backend, r=cjones
|
2012-02-06 17:47:11 -08:00 |
|
Michael Wu
|
444af3788a
|
Bug 725773 - Only compress touch move events on Gonk, r=cjones
|
2012-02-09 14:37:22 -08:00 |
|