Matt Woodrow
|
6f1f6c2930
|
Bug 539356 - Part 22 - Force a background color when running android reftests. r=roc
|
2012-08-29 17:48:43 +12:00 |
|
Ed Morley
|
c863356300
|
Revert mozilla-inbound to e4dd1fa6d222 for crashes and test failures on a CLOSED TREE
|
2012-09-27 16:34:46 +01:00 |
|
Matt Woodrow
|
fa1bb9fa65
|
Bug 539356 - Part 22 - Force a background color when running android reftests. r=roc
|
2012-08-29 17:48:43 +12:00 |
|
Kartikaya Gupta
|
ed2336ecaf
|
Bug 791263 - Disable screenshotting under low-memory conditions. r=blassey
|
2012-09-25 15:46:17 -04:00 |
|
Chris Peterson
|
f6d8de3463
|
Bug 793062 - Remove unused PostToJavaThread() and ExecuteNextRunnable(). r=blassey
|
2012-09-20 17:44:24 -07:00 |
|
Brad Lassey
|
e4c15f1c55
|
bug 727352 - don't use JSON for viewport meta data r=kats,mfinkle
|
2012-09-12 23:47:08 +02:00 |
|
Benoit Girard
|
e487fbec5d
|
Bug 791640 - EventTracer will only measure the main thread responsiveness, fixes profiling hang. r=blassey
--HG--
extra : rebase_source : a5a9074b74ab8638cfc4b568b0d09ca7b5e61b17
|
2012-09-20 14:23:15 -04:00 |
|
Kartikaya Gupta
|
d69347eff4
|
Bug 792496 - Remove ScreenshotHandler delegation stubs from GeckoAppShell. r=cpeterson
|
2012-09-19 17:15:55 -04:00 |
|
Ehsan Akhgari
|
b5c39afb4e
|
Bug 792502 - Kill the FunctionTimer code; r=vlad
|
2012-09-19 16:59:38 -04:00 |
|
Ehsan Akhgari
|
71d9f962d0
|
Backout bug 792109, bug 749053 and bug 779500 because of leaks in debug tests
|
2012-09-19 15:42:18 -04:00 |
|
Brad Lassey
|
5ab1683dfb
|
bug 727352 - don't use JSON for viewport meta data r=kats,mfinkle
|
2012-09-13 15:07:57 +02:00 |
|
Chris Peterson
|
660aaf2bc2
|
Bug 778980 - Part 3: Fix gcc -Wconversion-null warnings in widget/android. r=blassey
|
2012-09-14 12:02:51 -07:00 |
|
Christian Vielma
|
9daa52423c
|
Bug 756504 - Implement DOM_KEY_LOCATION_JOYSTICK for Android game controllers. r=cpeterson
|
2012-09-12 17:48:29 -07:00 |
|
Chris Peterson
|
cd604bcb0e
|
Backout 3875fa9aaec1 (changeset author is Christian Vielma, not Chris Peterson). a=oops
|
2012-09-12 17:40:41 -07:00 |
|
Chris Peterson
|
3fe868b85a
|
Bug 756504 - Implement DOM_KEY_LOCATION_JOYSTICK for Android game controllers. r=cpeterson
|
2012-09-12 17:36:32 -07:00 |
|
Chris Peterson
|
cfc21cce7e
|
Backout 01fb250fbba1 (changeset description should have said bug 756504, not bug 756505). a=oops
|
2012-09-12 17:31:21 -07:00 |
|
Christian Vielma
|
585957c59c
|
Bug 756505 - Implement DOM_KEY_LOCATION_JOYSTICK for Android game controllers. r=cpeterson
|
2012-09-12 11:19:39 -04:00 |
|
Wes Johnston
|
8234baf59c
|
Bug 787271 - Add methods to call in jni through ctypes. r=mfinkle,blassey
|
2012-09-12 11:31:17 -07:00 |
|
Brad Lassey
|
5acd657e06
|
bug 770289 - JNIEnv->NewString can throw and needs to be caught before another JNI call, handle NewStringUTF r=kats
|
2012-09-05 00:23:02 -04:00 |
|
Brad Lassey
|
a4736dd52a
|
bug 761503 - return a bool from PumpMessageLoop to indicate if work was performed r=snorp
|
2012-06-05 01:14:12 -04:00 |
|
Kartikaya Gupta
|
69712eb652
|
Bug 787060 - Update android widget RedrawAll to invalidate the entire view to work with DLBI. r=mattwoodrow
|
2012-09-04 18:06:22 -04:00 |
|
Randell Jesup
|
eedf93a21d
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Anthony Jones
|
d5f4d26ad1
|
Bug 772345 - Fix Android segfault on shutdown. r=blassey
|
2012-08-28 16:54:24 -04:00 |
|
Zoe Bellot
|
c7a4582c95
|
Bug 746142 - Part 2 - Use inputmode attribute to vary the virtual keyboard on Android. f=mounir r=cpeterson
|
2012-08-26 23:16:22 -03:00 |
|
Ehsan Akhgari
|
0fd9123eac
|
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 |
|
Matt Woodrow
|
1adf216f21
|
Bug 783449 - Move android specific NeedsPaint checks into the android widget implementation. r=roc
|
2012-08-20 22:00:50 +12:00 |
|
Ed Morley
|
7a68f05d39
|
Backout 506268f7735e & ea163112807d (bug 746142) for Android build failures
|
2012-08-17 12:30:02 +01:00 |
|
Zoe Bellot
|
ccf0a0450d
|
Bug 746142 - Part 2 - Use inputmode attribute to vary the virtual keyboard on Android. f=mounir r=cpeterson
|
2012-08-17 12:02:18 +02:00 |
|
Chris Jones
|
2573176d5c
|
Bug 776835: Check process capabilities in hal. r=blassey,jlebar
|
2012-08-16 12:34:53 -07:00 |
|
Neil Deakin
|
279f4c393a
|
Bug 743975 - remove the event handler argument to widget creation methods, r=tn
|
2012-08-15 14:53:09 -04:00 |
|
Neil Deakin
|
3e40b0b005
|
Bug 743975 - use a widget listener interface instead of the remaining events that don't need an event, r=tn,jmathies,netzen,smichaud,karlt,blassey,chrisjones
|
2012-08-15 14:52:42 -04:00 |
|
Eric Wong
|
dd8cf54ad6
|
Bug 773760: Save privacy status of transferable during cross-process clipboard transfer. r=ehsan
|
2012-08-14 20:37:44 -07:00 |
|
Ed Morley
|
9bb89363c7
|
Backout 327d9e9efbf7 (bug 773760) for bustage
|
2012-08-14 16:23:02 +01:00 |
|
Eric Wong
|
3d82e782b5
|
Bug 773760: Save privacy status of transferable during cross-process clipboard transfer. r=ehsan
|
2012-08-13 22:46:23 -07:00 |
|
Kartikaya Gupta
|
0a22a71c44
|
Bug 776906 - Remove unused enum. r=blassey
|
2012-08-13 20:01:31 -04:00 |
|
Kartikaya Gupta
|
c32754d98a
|
Bug 776906 - Fix thumbnails on Nexus 7. r=blassey
|
2012-08-13 20:01:31 -04:00 |
|
Matt Woodrow
|
0fe44d8b7f
|
Bug 539356 - Part 24 - Don't paint android widgets that aren't being composited, or at the front. r=roc
|
2012-08-13 22:10:10 +12:00 |
|
Wes Johnston
|
be7b3c9a7c
|
Bug 757680 - Add a pref to turn off event coalescing. r=kats
|
2012-08-09 12:54:36 -07:00 |
|
Makoto Kato
|
6ff25d0dc9
|
Bug 778389 - Password mask should be U+2022 on Android. r=cpeterson
|
2012-08-07 14:13:25 +09:00 |
|
Mike Hommey
|
6173fa297f
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Kartikaya Gupta
|
b2cee8b743
|
Bug 763166 - Fix race condition that could result in using an uninitialized AndroidBridge. r=snorp
|
2012-07-31 17:34:06 -04:00 |
|
David Zbarsky
|
06ea1f66f2
|
Bug 778519 - Don't include Layers.h everywhere Part 2 r=cjones
|
2012-07-30 17:42:26 -07:00 |
|
Aryeh Gregor
|
e806eeab4f
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Makoto Kato
|
fab68322c5
|
Bug 777304 - Don't use freed pointer after destructor of NS_ConvertUTF16toUTF8. r=bsmedberg
|
2012-07-27 12:13:51 +09:00 |
|
Nicholas Cameron
|
7aa563c2b9
|
Bug 764125; remove AzureEnabled from gfxInfo and replace with backend check. r=roc
|
2012-07-26 13:56:42 +12:00 |
|
Nicholas Cameron
|
73deb64951
|
Bug 764125; sort out preferred and fallback Azure backends for all platforms (gfxInfo). r=Bas
|
2012-07-25 12:46:20 +12:00 |
|
Nicholas Cameron
|
34ba57113f
|
Back out bug 746883, bug 764125, bug 761895, bug 746883, bug 748116
|
2012-07-26 18:48:24 +12:00 |
|
Nicholas Cameron
|
f371c79e75
|
Bug 764125; remove AzureEnabled from gfxInfo and replace with backend check. r=roc
|
2012-07-26 13:56:42 +12:00 |
|
Nicholas Cameron
|
a4a2fe78c5
|
Bug 764125; sort out preferred and fallback Azure backends for all platforms (gfxInfo). r=Bas
|
2012-07-25 12:46:20 +12:00 |
|
Joshua Cranmer
|
774444109e
|
Bug 773637 - Kill NS_SCRIPTABLE attributes, Part 2: Remove NS_SCRIPTABLE. r=ehsan
--HG--
extra : rebase_source : 83020e0a1961ed5b33d5e0599419c6b7b82caa87
|
2012-07-06 15:31:49 -05:00 |
|