Commit Graph

58 Commits

Author SHA1 Message Date
Birunthan Mohanathas
88a0348924 Bug 713082 - Part 2: Rename Util.h to ArrayUtils.h. r=Waldo 2013-12-08 21:52:54 -05:00
Birunthan Mohanathas
ef6a40f19b Bug 784739 - Switch from NULL to nullptr in browser/components. r=ehsan 2013-08-21 12:13:50 -04:00
Martin Stransky
09e52f9c10 Bug 879760 - Port GTK2 to GTK3 - browser dir. r=karlt 2013-06-11 13:40:28 -04:00
Ehsan Akhgari
755333d3f2 Backed out 2 changesets (bug 784739) because of Windows build failures
Backed out changeset 06ae36377cfa (bug 784739)
Backed out changeset e56f91d780df (bug 784739)
2013-04-02 23:04:49 -04:00
matekm
95eb6c3e62 Bug 784739 - Switch from NULL to nullptr in browser/; r=ehsan 2013-04-02 20:40:29 -04:00
Mike Hommey
4f35d40614 Bug 791694 - Use XRE_EXECUTABLE_FILE in browser shell instead of guesswork from NS_XPCOM_CURRENT_PROCESS_DIR and MOZ_APP_NAME. r=jimm 2012-12-14 08:32:54 +01:00
Brian R. Bondy
b231f7e307 Bug 791019 - New parameter for is default browser for non Windows platforms. r=jimm 2012-09-21 10:05:24 -04: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
Aryeh Gregor
8b4a23fc4c Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
Geoff Lankow
7a64448b03 Bug 749930 - Replace uses of nsILocalFile with nsIFile (compiled code only); r=bsmedberg 2012-06-06 14:08:30 +12:00
Gervase Markham
cb6a072c2a Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Wolfgang Rosenauer
9e0cad1539 Bug 526717 - remove non-working "Set as desktop background" from the UI for unsupported desktops. r=gavin 2012-04-02 22:43:12 +02:00
Ian Moody
ea770ea377 Bug 662324 - Add "Fill" and "Fit" position support for "Set As Desktop Background...". r=gavin 2012-02-01 11:37:55 +01:00
Karl Tomlinson
ead10561e5 b=716424 remove unused string kDocumentIconPath r=roc 2012-01-09 17:58:42 +13:00
Dão Gottwald
5062e45219 Bug 713829 - Remove unused brandFullName string in nsGNOMEShellService::SetDefaultBrowser. r=karlt 2011-12-29 12:33:39 +01:00
Ehsan Akhgari
478ad1a412 Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
2011-10-17 10:59:28 -04:00
Jeff Walden
7d613942b0 Bug 693469 - Implement mozilla::ArrayLength and mozilla::ArrayEnd, and replace uses of NS_ARRAY_LENGTH whenever possible. (Exceptions: assigning to static initializers, use in static assertions, as template parameters, etc. These will go away when the relevant compilers have C++11 constexpr support.) r=cjones 2011-10-10 22:50:08 -07:00
Jeff Walden
c5e5f873d1 Back out everything since 5435ee09cf7b. Tinderbox compilers hate me. r=epic-fail 2011-10-12 12:21:53 -07:00
Jeff Walden
946f2ae0e3 Bug 639469 - Implement mozilla::ArrayLength and mozilla::ArrayEnd, and replace uses of NS_ARRAY_LENGTH whenever possible. r=cjones 2011-10-10 22:50:08 -07:00
Michael Wu
0fe7772ece Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones 2011-09-28 23:19:26 -07:00
Chris Coulson
8b860dd663 b=611953 Port desktop background settings to GSettings r=karlt 2011-05-12 20:15:16 +12:00
Chris Coulson
54607155a5 Bug 611953 - Part 3: GNOME 3.0 readiness; r=roc,karlt 2011-04-12 16:11:20 -04:00
Chris Coulson
a1b5e00c2d Bug 611953 - Part 1: GNOME 3.0 readiness; r=roc,karlt 2011-04-12 16:10:09 -04:00
Tim Taubert
c6c7ade378 Bug 633221 - Setting FF as default browser throws error when GIO Service is not available [r=roc, a=roc] 2011-02-15 09:19:36 +01:00
Marco Bonardo
4bce84a4f1 Backed out changeset 5b2e1e0e6335 due to m-oth permaorange 2011-02-14 17:24:20 +01:00
Tim Taubert
08d60aaab9 Bug 633221 - Setting FF as default browser throws error when GIO Service is not available [r=roc, a=roc] 2011-02-14 07:36:43 +01:00
608399623a Bug 624267 - Crash on Ubuntu [@ nsGNOMEShellService::SetDefaultBrowser ] r+a=roc 2011-01-11 09:35:18 +01:00
Reed Loden
16dc36a5e5 Bug 294375 - Remove support for libgnomevfs's handling of user modifications to the MIME database, as it has been deprecated for years [r=karlt sr=roc] 2009-09-08 15:08:02 -05:00
1092734136 Bug 402892. Support gio as well as gnome-vfs. r=roc 2009-08-25 11:58:11 -07:00
Joe Drew
2919d8a083 Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc 2009-07-20 18:50:15 -07:00
Mike Hommey
075cd19251 Bug 461663 - 16 bits colour channel values should not have lower bits zeroed. r=gavin 2009-04-17 10:17:29 +02:00
James Boston
06b3db477b Improve nsIProcess, fix nsIProcess.kill(). b=442393 r=bsmedberg 2009-03-09 12:47:39 -04:00
Arpad Borsos
c23cd56861 Bug 471877 - Cleanup GTK includes; further cleanup + system-headers cleanup; r+sr=roc 2009-01-21 16:24:46 +01:00
Ginn Chen
c2308a0b1d Bug 454558 Null check missing in nsGNOMEShellService::GetShouldCheckDefaultBrowser and SetShouldCheckDefaultBrowser, r+sr=roc 2008-09-28 21:09:09 +08:00
Christopher A. Aillon
b1d5664983 Bug 421977 - nsGNOMEShellService::GetDesktopBackgroundColor should support GConf's actual format. r=gavin 2008-09-08 12:06:32 +02:00
dec527c3a5 Bug 420786 - "Setting image as desktop background causes a crash in Linux" [p=sylvain.pasche@gmail.com (Sylvain Pasche) r=gavin a1.9b5=beltzner] 2008-03-20 23:48:36 -07:00
23e1cc38f7 Bug 388192 - Remove gopher OS integration support. r=caillon, a=mconnor:blocking-firefox3 2007-10-01 11:25:26 -07:00
mozilla.mano@sent.com
8e9d230e3a Bug 355120 - Move default feed reader code to shellsvc. r=gavin. 2006-12-20 22:34:51 +00:00
benjamin@smedbergs.us
6a399a8238 Re-land bug 345517 now that the logging issues are hopefully fixed, r=darin/mento/mano 2006-11-13 17:53:01 +00:00
pavlov@pavlov.net
f7bb7881cf backing out 345517 due to leak test bustage 2006-11-10 04:42:03 +00:00
benjamin@smedbergs.us
84c6af09b6 Bug 345517, try #2, make the browser component use frozen linkage, so that ff+xr builds. This does *not* --enable-libxul by default for Firefox (yet). That will wait until after 1.9a1. Older patch r=darin+mento, revisions r=mano 2006-11-09 15:02:29 +00:00
benjamin@smedbergs.us
34f2348d90 Backout bug 345517 due to various issues. 2006-08-10 14:06:47 +00:00
benjamin@smedbergs.us
93d9775bb1 Bug 345517 - Build Firefox --enable-libxul by default, r=darin/mento 2006-08-09 13:39:19 +00:00
beng@bengoodger.com
ec204208bd 334747, 339893 - desktop application feed readers do not display their app name properly or launch with the specified feed on OSX due to lack of support for a function to get the application bundle name, and a method to invoke an application bundle on OS X with a URL. Add an attribute to nsILocalFileMac called bundleDisplayName to show the application's name, and a method to nsIShellService called openApplicationWithURL which launches an application with a URL parameter appropriately across platforms (nsIProcess on windows and linux, LaunchServices on OS X). Update the client code to use bundleDisplayName, and also the <filefield> binding in preferences to use it too. r=mark sr=darin 2006-06-27 22:38:55 +00:00
cbiesinger@web.de
3cd047cc63 Bug 333178 fix image cursors for cairo-gtk2 builds
r=bryner sr=roc
2006-06-16 18:38:39 +00:00
gavin@gavinsharp.com
1e0aa697b0 Back out bug 311605 pending further testing. 2005-12-04 21:02:38 +00:00
gavin@gavinsharp.com
0c8ce1df8f Bug 311605: default browser checking should be done nsBrowserBlue, not in delayed startup, r=mano 2005-12-04 18:34:12 +00:00
mozilla.mano@sent.com
ee47931f4c Bug 274374 - Landing Mac Shell Servie (default browser, set desktup backgorund and mail integration support). patches from ben and me. r=jhpedemonte/josh/mconnor, a=shaver. 2005-06-23 02:25:06 +00:00
roc+@cs.cmu.edu
373b848dbc Bug 291897. Fix build breakage by having GNOMEShellService depend on widget and only try to use nsIGdkPixbufImage if we're a GTK2 build. r+sr=blizzard,a=asa 2005-04-26 21:32:26 +00:00