Birunthan Mohanathas
|
a8756989dc
|
Bug 1038458 - Part 7: Flatten browser/components/shell/{public,src}/ directories. r=mak
--HG--
rename : browser/components/shell/src/Makefile.in => browser/components/shell/Makefile.in
rename : browser/components/shell/src/nsGNOMEShellService.cpp => browser/components/shell/nsGNOMEShellService.cpp
rename : browser/components/shell/src/nsGNOMEShellService.h => browser/components/shell/nsGNOMEShellService.h
rename : browser/components/shell/public/nsIMacShellService.idl => browser/components/shell/nsIMacShellService.idl
rename : browser/components/shell/public/nsIShellService.idl => browser/components/shell/nsIShellService.idl
rename : browser/components/shell/public/nsIWindowsShellService.idl => browser/components/shell/nsIWindowsShellService.idl
rename : browser/components/shell/src/nsMacShellService.cpp => browser/components/shell/nsMacShellService.cpp
rename : browser/components/shell/src/nsMacShellService.h => browser/components/shell/nsMacShellService.h
rename : browser/components/shell/src/nsSetDefaultBrowser.js => browser/components/shell/nsSetDefaultBrowser.js
rename : browser/components/shell/src/nsSetDefaultBrowser.manifest => browser/components/shell/nsSetDefaultBrowser.manifest
rename : browser/components/shell/src/nsShellService.h => browser/components/shell/nsShellService.h
rename : browser/components/shell/src/nsWindowsShellService.cpp => browser/components/shell/nsWindowsShellService.cpp
rename : browser/components/shell/src/nsWindowsShellService.h => browser/components/shell/nsWindowsShellService.h
|
2014-07-26 09:32:14 -07:00 |
|
Birunthan Mohanathas
|
5f1fde8824
|
Bug 900908 - Part 3: Change uses of numbered macros in nsIClassInfoImpl.h/nsISupportsImpl.h to the variadic variants. r=froydnj
|
2014-04-27 03:06:00 -04:00 |
|
Ehsan Akhgari
|
1b83407ce9
|
Bug 927728 - Part 1: Replace PRUnichar with char16_t; r=roc
This patch was automatically generated by the following script:
#!/bin/bash
# Command to convert PRUnichar to char16_t
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*modules/libmar*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name prtypes.h \
! -name Char16.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 PRUnichar char16_t
|
2014-01-04 10:02:17 -05:00 |
|
Ehsan Akhgari
|
f1fbe50293
|
Bug 924248 - Make nsIDocument.h go on a diet; r=jst
The nsMacShellService code is rewritten to stop using GetLoadContext
which will now only be available in libxul.
|
2013-10-07 22:21:07 -04:00 |
|
Birunthan Mohanathas
|
2799a23c6a
|
Bug 784739 - Switch from NULL to nullptr in browser/components. r=ehsan
|
2013-08-21 12:13:50 -04:00 |
|
Ehsan Akhgari
|
43764bd494
|
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
|
0bf38851a2
|
Bug 784739 - Switch from NULL to nullptr in browser/; r=ehsan
|
2013-04-02 20:40:29 -04:00 |
|
Josh Matthews
|
a9c2289382
|
Bug 794602 - Make nsWebBrowserPersist::SaveURIInternal use channels with valid privacy statuses. r=bz,mfinkle,smaug,ehsan,jwalker,roc,unfocused
|
2012-10-04 15:07:51 -04:00 |
|
Ryan VanderMeulen
|
44a8d6faa6
|
Backout e5269e137290, (bug 794606), e94dbc151121 (bug 794602), and 0ea0cfc7f6f4 (bug 792821) due to mochitest-other orange on a CLOSED TREE.
|
2012-10-04 19:34:19 -04:00 |
|
Josh Matthews
|
13630d0f8f
|
Bug 794602 - Make nsWebBrowserPersist::SaveURIInternal use channels with valid privacy statuses. r=bz,mfinkle,smaug,ehsan,jwalker,roc,unfocused
|
2012-10-04 15:07:51 -04:00 |
|
Brian R. Bondy
|
f117583b03
|
Bug 791019 - New parameter for is default browser for non Windows platforms. r=jimm
|
2012-09-21 10:05:24 -04:00 |
|
Randell Jesup
|
65539ef89c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Ehsan Akhgari
|
e368dc9c85
|
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
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Geoff Lankow
|
5cefea8480
|
Bug 749930 - Replace uses of nsILocalFile with nsIFile (compiled code only); r=bsmedberg
|
2012-06-06 14:08:30 +12:00 |
|
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Wolfgang Rosenauer
|
b93bb1bc3e
|
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 |
|
Oonishi Atsushi
|
8f0353652d
|
Bug 311007 - Add aFlags arg to onLocationChange(...), to distinguish between same-document and different-document. r=smaug, sr=bzbarsky
|
2011-11-10 15:01:11 +01:00 |
|
Olli Pettay
|
5a92aedb22
|
Bug 682420 - Rename nsINode::GetOwnerDoc to nsINode::OwnerDoc, part 2, r=jst
--HG--
extra : rebase_source : 53dc2ec386f6e4147587e6be3c53d297ad71d57a
|
2011-10-18 14:19:44 +03:00 |
|
Olli Pettay
|
2c2da3099f
|
Bug 682420 - Rename nsINode::GetOwnerDoc to nsINode::OwnerDoc, part 1, r=jst
--HG--
extra : rebase_source : baf1a25cdea68d499a7673fdf96e27b5a12dc83c
|
2011-10-18 13:53:36 +03:00 |
|
Ehsan Akhgari
|
92064e6d3f
|
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 |
|
Michael Wu
|
d2b70213ac
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
|
2011-09-28 23:19:26 -07:00 |
|
Phil Ringnalda
|
ea979d9b8d
|
Remove a=trailing space
|
2010-12-31 16:11:42 -08:00 |
|
Josh Aas
|
5c2f8c4d8c
|
More Carbon usage cleanup. b=550787 r=bsmedberg
|
2010-03-10 14:30:11 -05:00 |
|
Jonathan Kew
|
75cb51bffc
|
Bug 423672. Use public Launch Services APIs instead of undocumented internals. r=joshmoz,mstange
|
2009-04-06 12:24:38 +12:00 |
|
Jesse Ruderman
|
1d44a8b2f7
|
Bug 443757 - Extra semicolon in nsMacShellService::SetDefaultBrowser makes "conditional" code unconditional. r=mano
|
2008-07-05 18:06:57 -07:00 |
|
mozilla.mano%sent.com
|
604da2bce2
|
Bug 368776 - Feed Preview is broken if Safari is the default reader. r=mento.
|
2007-01-31 17:19:39 +00:00 |
|
mozilla.mano%sent.com
|
f8fcdc11fb
|
Bug 358492 - List default feed reader on OS X. r=mento.
|
2007-01-05 11:40:46 +00:00 |
|
mozilla.mano%sent.com
|
1e18f4d51c
|
Bug 355120 - Move default feed reader code to shellsvc. r=gavin.
|
2006-12-20 22:34:51 +00:00 |
|
benjamin%smedbergs.us
|
217948472d
|
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
|
0b5a3c2706
|
backing out 345517 due to leak test bustage
|
2006-11-10 04:42:03 +00:00 |
|
benjamin%smedbergs.us
|
c8bc8c9265
|
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
|
af03fc0477
|
Backout bug 345517 due to various issues.
|
2006-08-10 14:06:47 +00:00 |
|
benjamin%smedbergs.us
|
ffd802f9ed
|
Bug 345517 - Build Firefox --enable-libxul by default, r=darin/mento
|
2006-08-09 13:39:19 +00:00 |
|
beng%bengoodger.com
|
65ef342f8e
|
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 |
|
gavin%gavinsharp.com
|
1b459d8d0d
|
Back out bug 311605 pending further testing.
|
2005-12-04 21:02:38 +00:00 |
|
gavin%gavinsharp.com
|
b05089efa8
|
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
|
30e1c51199
|
Bug 300292 - rewrite nsMacShellService::SetDesktopBackground(). r=jhpedemonte/mconnor, a=asa.
|
2005-07-13 19:31:11 +00:00 |
|
mozilla.mano%sent.com
|
0e60b9654a
|
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 |
|
darin%meer.net
|
df6469da1f
|
fixing bustage
|
2004-07-16 00:07:12 +00:00 |
|
bryner%brianryner.com
|
56b2b34f2b
|
Implement nsIShellService for GNOME (bug 242254). r=biesi, sr=shaver. Note: set as wallpaper for images that use transparency will be broken until bug 250531 is fixed. This also makes toolkit/ always be pulled in preparation for migrating more code to the new GNOME XPCOM interfaces.
|
2004-07-15 22:51:19 +00:00 |
|
ben%bengoodger.com
|
1dfa27baee
|
235380 - firefox should set itself as default browser only for the current user. Change Windows Shell Service to add an additional option - whether to set default browser for all users or just the current user. Also make the code read out of HKCU instead of HKLM.
|
2004-06-30 20:27:30 +00:00 |
|
ben%bengoodger.com
|
94ff451885
|
236744 - replace winhooks with a XP shell service to better allow for system integration on various platforms
|
2004-03-08 09:56:16 +00:00 |
|
ben%bengoodger.com
|
c23835dbe0
|
[shell1]
|
2004-03-08 09:38:22 +00:00 |
|