Brian R. Bondy
|
228097c106
|
Bug 856202 - Alert service always cancels in Metro right away. r=wchen
|
2013-04-08 20:39:55 -04:00 |
|
Kyle Machulis
|
331f36baa9
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
|
2013-04-01 11:36:59 -07:00 |
|
Kyle Machulis
|
ec9b53db93
|
Backout for changeset 03452b187c14 (Bug 855465) due to bustage on a CLOSED TREE; r=qdot
|
2013-03-29 15:12:58 -07:00 |
|
Kyle Machulis
|
0419a0b889
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
|
2013-03-29 13:56:18 -07:00 |
|
Mike Shal
|
24be52d653
|
Bug 844654 - Part 2: Move MODULE to moz.build; rs=gps
|
2013-03-19 11:47:00 -07:00 |
|
William Chen
|
5a513bcc76
|
Bug 782211 - Part 9: Remove native notification systems on desktop platforms. r=dougt
|
2013-03-18 06:24:55 -07:00 |
|
William Chen
|
e86f5ff604
|
Bug 782211 - Part 8: Updated existing XUL alerts to implement the Notification API. r=enn
|
2013-03-18 06:24:54 -07:00 |
|
William Chen
|
4c059d6277
|
Bug 782211 - Part 2: Updated the nsIAlertsService API and its implementation to include support for bidi overrides and a method to close notifications. r=dougt
|
2013-03-18 06:24:53 -07:00 |
|
William Chen
|
6d370e30f7
|
Bug 782211 - Part 1: Implemented additional functionality in Fennec to support Notification API. r=wesj
|
2013-03-18 06:24:53 -07:00 |
|
Gregory Szorc
|
f9d16e1268
|
Bug 818246 - Part 5: Move XPIDLSRCS into moz.build (manual); r=glandium
|
2013-03-12 10:20:41 -07:00 |
|
Gregory Szorc
|
7638dd9198
|
Bug 818246 - Part 4: Move XPIDLSRCS into moz.build (auto); rs=glandium
This is the result of running
|mach mozbuild-migrate --list XPIDLSRCS SDK_XPIDLSRCS XPIDL_SOURCES| and
reverting xpcom/sample/*.
|
2013-03-12 10:17:46 -07:00 |
|
Gregory Szorc
|
f96c000ea2
|
Bug 784841 - Part 18θ: Convert /toolkit f=Mossop, Ms2ger; rs=ted
|
2013-02-25 13:19:09 -08:00 |
|
Josh Aas
|
d733ab0e95
|
Bug 827979: Add Growl support back due to change in notification plans. r=backout
|
2013-01-28 10:04:51 -05:00 |
|
Josh Aas
|
83de02cce9
|
Bug 822620: Disable Notification Center support for Firefox 19 and 20, it isn't ready. r=dougt
|
2012-12-31 14:16:57 -05:00 |
|
Neil Rashbrook
|
09004977a9
|
Bug 818861 Shouldn't allow promising a flat string from a flat string r=dbaron
|
2012-12-22 20:40:37 +00:00 |
|
Jared Wein
|
2ed5209a59
|
Bug 796111. Adjust styling of nsIAlertService alert windows. r=dao
|
2012-10-06 19:17:07 -07:00 |
|
Jared Wein
|
d358d635b0
|
Bug 786125 - followup, store the magic number in a const. r=Unfocused
|
2012-10-04 00:07:18 -07:00 |
|
Jared Wein
|
f06621d26c
|
Bug 786125 - Alert showing/hiding animation is janky (nsIAlertsService). r=Unfocused
|
2012-10-03 23:59:36 -07:00 |
|
Josh Aas
|
7e078197ce
|
Bug 777409: Remove Growl support. Replaced by Notification Center support on OS X 10.8, which has much smaller code size and doesn't do main thread i/o. r=dougt
|
2012-09-18 10:08:17 -04:00 |
|
Randell Jesup
|
3b4961b603
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Luke Wagner
|
71a8cfae18
|
Bug 625199 - Convert one more JSAutoEnterCompartment in ObserverPair.h (r=bustage)
|
2012-08-23 18:13:08 -07:00 |
|
Luke Wagner
|
55107a5229
|
Bug 625199 - s/JSAutoEnterCompartment/JSAutoCompartment/ and make it infallible (r=bholley)
|
2012-08-21 18:42:53 -07:00 |
|
Ehsan Akhgari
|
1f40ea0687
|
Bug 579517 follow-up: Remove NSPR types that crept in
|
2012-08-23 11:30:56 -04:00 |
|
Josh Aas
|
4fadd4469a
|
Bug 728106: Add Notification Center support for OS X 10.8. r=smichaud,dougt
|
2012-08-22 15:30:13 -04:00 |
|
Ehsan Akhgari
|
243c878d26
|
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 |
|
William Chen
|
bd0a13593a
|
Bug 776134 - Part 2: Make AlertsService remote alerts from content process to chrome process. r=dougt
|
2012-07-26 18:25:02 -04:00 |
|
William Chen
|
0e3f25ed57
|
Bug 776134 - Part 1: Rename files of Growl nsIAlertsService implementation. r=dougt
|
2012-08-01 20:31:11 -04:00 |
|
Mike Hommey
|
0f9f294ea0
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Aryeh Gregor
|
8b4a23fc4c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Jared Wein
|
c518252edf
|
Bug 770433 - Update borders and background of alert (toast) notifications on Windows. ui-r=shorlander r=dao
|
2012-07-26 10:55:23 -07:00 |
|
Geoff Lankow
|
9aed6e8f4b
|
Bug 230959 - Inconsistent extra 1 pixel width of XUL window; r=Neil
|
2011-09-07 22:14:04 +12:00 |
|
Nathan Froyd
|
f7054dc678
|
Bug 370750 - consolidate mochitest files installation; r=glandium
With assistance on the patch from Ms2ger, Waldo, and Mossop.
|
2012-07-03 16:49:02 -04:00 |
|
Ehsan Akhgari
|
7963619b25
|
Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (toolkit parts); r=jrmuizel
|
2012-06-19 23:27:32 -04:00 |
|
Neil Rashbrook
|
3f194429dd
|
Bug 758354 Stop unnecessarily preprocessing chrome r=dolske
|
2012-06-26 00:11:16 +01:00 |
|
Ed Morley
|
4bd90ea948
|
Backout ec9451e9e830 (bug 758354) for PGO linux permaorange in browser_bug422590.js and friends
|
2012-06-25 19:14:43 +01:00 |
|
Neil Rashbrook
|
d9a10be7eb
|
Bug 758354 Stop unnecessarily preprocessing chrome r=dolske
|
2012-06-25 09:24:49 +01:00 |
|
Gervase Markham
|
d697fdc8ec
|
Bug 759095 - upgrade license to MPL 2, and other licensing cleanups.
|
2012-05-29 16:52:43 +01:00 |
|
Gervase Markham
|
cb6a072c2a
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Ms2ger
|
b8c940e642
|
Bug 741245 - Remove nsresult return value from nsXPConnect::GetSafeJSContext(); r=bholley
|
2012-05-05 11:00:05 +02:00 |
|
Ms2ger
|
54f1f6b78d
|
Backing out bf0a78471e5e:dc7022e2d807 for inexplicable windows crashes.
|
2012-04-14 17:52:34 +02:00 |
|
Ms2ger
|
78bc77e39f
|
Bug 741245 - Remove nsresult return value from nsXPConnect::GetSafeJSContext(); r=bholley
|
2012-04-14 15:05:01 +02:00 |
|
aceman
|
bd62801033
|
Bug 738568 - remove Services.prefs.getBranch(null) occurences. r=gavin
|
2012-03-29 11:48:40 +02:00 |
|
Phil Ringnalda
|
941a3ed11c
|
Back out 0cb85ff0f764 (bug 738568), 9949bb092303 (bug 730209), 095fd525afa7 (bug 729924), dcf8929a8115 (bug 633602) because of widely scattered and unclear bustage on a CLOSED TREE
|
2012-03-28 22:37:46 -07:00 |
|
aceman
|
5b045964d6
|
Bug 738568 - Remove Services.prefs.getBranch(null) occurences in Toolkit. r=gavin
|
2012-03-28 21:00:14 -04:00 |
|
Gavin Sharp
|
596779abed
|
backout 110452fddc2a (bug 738568) since it broke viewsource
|
2012-03-27 18:06:10 -07:00 |
|
aceman
|
7684f16e43
|
Bug 738568 - Remove Services.prefs.getBranch(null) occurences in Toolkit. r=gavin
|
2012-03-27 19:17:35 -04:00 |
|
Siddharth Agarwal
|
06d0e72792
|
Bug 699014 - Toolkit alerts shouldn't be displayed if the user's in a fullscreen app, presentation mode, or in Windows 8 immersive mode. r=bbondy, ui-r=limi
|
2012-03-08 02:39:04 +05:30 |
|
Panagiotis Koutsourakis
|
835036b234
|
Bug 702388 - Convert Makefiles to use |TEST_DIRS += foo| r=khuey
Files named Makefile.in containing the expression
DIRS += <foo>
or
DIRS = <foo>
inside the conditional expression
ifdef ENABLE_TESTS
...
endif
are changed to
TEST_DIRS += tests
outside any conditional expression.
The files
./layout/Makefile.in
./layout/Makefile.in
./layout/style/Makefile.in
./rdf/Makefile.in
./security/manager/Makefile.in
./content/Makefile.in
./content/smil/Makefile.in
./content/xul/templates/Makefile.in
./content/xul/content/Makefile.in
./content/base/Makefile.in
./content/media/Makefile.in
./parser/htmlparser/Makefile.in
./dom/sms/Makefile.in
./js/jsd/Makefile.in
./js/xpconnect/Makefile.in
./widget/Makefile.in
./widget/windows/Makefile.in
./Makefile.in
./startupcache/Makefile.in
./storage/Makefile.in
./gfx/Makefile.in
./intl/strres/Makefile.in
./intl/uconv/Makefile.in
./intl/unicharutil/Makefile.in
./intl/lwbrk/Makefile.in
./embedding/Makefile.in
./modules/libjar/Makefile.in
./modules/libpref/Makefile.in
./build/Makefile.in
./build/win32/Makefile.in
./xpcom/Makefile.in
./extensions/spellcheck/hunspell/Makefile.in
./extensions/cookie/Makefile.in
./netwerk/Makefile.in
./netwerk/streamconv/Makefile.in
./editor/txmgr/Makefile.in
./toolkit/mozapps/shared/Makefile.in
./toolkit/mozapps/update/Makefile.in
./toolkit/library/Makefile.in
./toolkit/library/Makefile.in
./toolkit/crashreporter/Makefile.in
./toolkit/components/perf/Makefile.in
./toolkit/components/perf/Makefile.in
./toolkit/components/feeds/Makefile.in
./toolkit/components/url-classifier/Makefile.in
contain the string
ifdef ENABLE_TESTS
but have some other statement inside (e.g. TOOL_DIRS += <foo> etc) and
they remain unchanged by this patch.
|
2012-02-04 17:32:24 +00:00 |
|
Benjamin Smedberg
|
3f16b7a0c1
|
Bug 715576 - libalerts_s.dylib is incorrectly-named (_s indicates a static library) and links against the static-js library, which is bad. Make it link against either libxul (static-js) or the dynamic-js library correctly, and rename it. r=ted
|
2012-01-11 11:28:21 -05:00 |
|
Markus Stange
|
e1883b245c
|
Bug 691662 - Remove unnecessary condition which doesn't work with Growl 1.3. r=sdwilsh
|
2011-11-13 09:03:23 +01:00 |
|