Commit Graph

103 Commits

Author SHA1 Message Date
Tim Taubert
09e05ffe6d Backed out changeset 571b2854e11f 2013-08-28 09:56:59 +02:00
Zach Carter
f9c2124fae imported patch lloyd-patch 2013-08-27 13:31:03 -07:00
Mike Hommey
b207d5baf7 Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps 2013-09-05 09:01:46 +09:00
Felipe Gomes
d02b44f1bb Bug 899348 - Implement about:tabcrashed page. r=jaws 2013-09-03 19:11:22 -03:00
Gijs Kruitbosch
208c40b69c merge m-c to UX 2013-10-27 21:18:18 +01:00
Gijs Kruitbosch
4da90e9a3b Merge mozilla-central and ux 2013-10-25 10:23:03 +02:00
Matthew Noorenberghe
ea8ec3d6fc Merge mozilla-central to UX 2013-09-12 01:39:29 -07:00
Mike Conley
daa4ab9270 Automated merge with https://hg.mozilla.org/mozilla-central 2013-09-05 09:59:00 -04:00
Matthew Noorenberghe
6794bd0cca Merge mozilla-central to UX 2013-09-04 23:31:53 -07:00
Gijs Kruitbosch
1b68c397fc Merge m-c to ux 2013-06-29 11:18:15 -04:00
Jared Wein
d79465b54f Automated merge with https://hg.mozilla.org/mozilla-central 2013-06-21 19:22:56 -04:00
Phil Ringnalda
64085ff1fd Merge m-c to a CLOSED TREE ux 2013-05-27 11:48:20 -07:00
Gijs Kruitbosch
b9db413b89 Bug 833943, part 2: implement about:welcomeback, r=gavin
* * *
Bug 833943 - Part 5: add about:welcomeback to gInitialPages
2013-06-28 17:44:29 -04:00
Mike Shal
42d90ead43 Bug 864774 - Part 2: Move CPPSRCS to moz.build as CPP_SOURCES; r=joey CLOSED TREE
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
2013-04-23 17:54:15 -04:00
Blair McBride
a53bad3fd1 Bug 858196 - Move all customization code to be under browser/components/customizableui/. r=jaws. 2013-04-15 17:34:52 +12:00
Brian O'Keefe
df70c9c82e Bug 875934 - Move LIBRARY_NAME to moz.build (batch #1); r=mshal 2013-06-17 15:21:01 -04:00
Mike Conley
0ad350ea20 Bug 770135 - New PanelUI and toolbar customization - Milestone 1. r=mconley,jaws,Unfocused. 2013-03-26 17:23:23 -04:00
Mike Shal
eec103d849 Bug 846634 - Part 2: Move EXPORTS to moz.build; r=joey 2013-04-16 15:24:43 -04:00
Gavin Sharp
b0e36e29d9 Bug 851586, r=bz 2013-03-19 12:23:43 +01: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
Gregory Szorc
1a3da6acf4 Bug 784841 - Part 18d: Convert /browser; r=gavin f=Ms2ger 2013-02-25 12:47:18 -08:00
Mike Connor
ccfed382e5 bug 719484 - build about:healthreport, r=dolske 2013-01-11 15:31:38 -08:00
Ehsan Akhgari
8f81bfa65d Bug 825454 - Make contentAreaDownloadsView.xul a proper in-content UI; r=dao 2012-12-29 17:04:16 -05:00
Justin Dolske
8fb9ae0664 Bug 778608 - Move SafeBrowsing.jsm to toolkit. r=gavin 2012-10-29 17:26:41 -07:00
Jonas Sicking
4bb5bdb28b Bug 786009: Give about:feeds pages the rigth principal so that they work even when the user has disabled JS. r=bz 2012-10-22 18:05:46 -07:00
Felipe Gomes
b8cce3c429 Bug 766616. Part 1. Implement about:socialerror page. r=mixedpuppy 2012-09-06 16:23:01 -07:00
Randell Jesup
3b4961b603 Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg 2012-09-01 22:35:17 -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
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
Jonas Sicking
dcdb8e5214 Bug 774585: Make about: redirectors reset channel owner to null rather than set an explicit principal so that we'll go through the normal code paths in GetChannelPrincipal. r=bz 2012-07-17 22:22:19 -07:00
Jim Mathies
1a791fcee3 Bug 732124 - Fix for crt link errors with VC11 - build glue using both the static and the dynamic runtime lib, and link accordingly for various components. r=ted 2012-05-21 16:31:03 -05:00
Gervase Markham
cb6a072c2a Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Jon Rietveld
acf08da793 Bug 733473 - Implement initial prerequisites for in-content preferences, and landing page. r=bmcbride 2012-05-08 19:10:25 -07:00
Frank Yan
ae9ac107cd Bug 711157 - about:home Visual Refresh & Launcher. r=mak ui-r=shorlander 2012-03-14 16:10:12 -07:00
Dão Gottwald
a06e1b4219 Bug 730271 - Create sync folder for Sync-related content files. r=mak 2012-02-28 17:03:35 +01:00
Tim Taubert
a29ae58873 Bug 455553 - Part 3 - about:newtab integration; r=fryn,gavin 2012-01-25 23:43:27 +01:00
Gregory Szorc
ee16899cec Bug 698248 - Remove unused FORCE_USE_PIC variable; r=khuey 2011-11-01 15:45:23 -07:00
Allison Naaktgeboren
3844011d35 Bug 675822 - Part 2: Sync desktop status page with upload progress bar. r=philikon 2011-10-19 14:29:24 -07:00
Margaret Leibovic
813fc82313 Bug 573176 - Implement Site-Specific Privacy Preferences, r=sdwilsh+gavin 2011-05-10 15:57:05 -07:00
Marco Bonardo
ed3bc5e8f8 Bug 563723 - Add an about:home page that mimics current start page. r=gavin,mano,dietrich a=blocking 2010-08-26 12:19:37 +02:00
Paul O’Shannessy
11285dec6b Bug 571897 (Sync UI) - Part 4: about:sync-tabs [r=dolske] 2010-08-02 16:37:56 -07:00
Benjamin Smedberg
68eb98db57 Bug 568691 part B - mechanical changes to in-tree binary modules needed to get them building and registering correctly. After this patch, xpcshell appears to work. 2010-06-10 14:11:40 -04:00
Phil Ringnalda
b717403e03 Bug 518607 - Move the Troubleshooting Information page into toolkit so other apps like Thunderbird and SeaMonkey can use it, r=gavin 2010-02-20 19:36:46 -08:00
Steffen Wilberg
2dddf2cb0f Bug 538421: Add a nsIAboutModule flag to hide 'about:' pages from about:about. r=mano, sr=bzbarsky 2010-01-23 11:07:48 +01:00
Gavin Sharp
e10f1b1ed6 Bug 462598 - about:rights text in nightlies is showing text for branded builds. r=dolske 2009-09-26 21:02:03 +02:00
Curtis Bartley
2ae376c5cc Bug 367596 - Create about:support page with troubleshooting information. r=johnath,mconnor 2009-09-25 18:40:51 +02:00