Commit Graph

102 Commits

Author SHA1 Message Date
Seth Fowler
278fbdd534 Bug 846132 - (Part 2) Update CopyFrame callers to use GetFrame. r=jdm 2013-03-05 15:39:48 -08:00
Trevor Saunders
f55c01f3cc bug 829288 - fix warnings under browser/ r=gavin 2013-01-10 07:34:58 -05: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
8e28c3166e Bug 796038 - Default browser prompt shows even after setting defaults for Firefox from control panel. r=jimm 2012-10-05 10:17:30 -04:00
Brian R. Bondy
b8b73b2bf5 Bug 791019 - New parameter for checking all defaults for win32. r=jimm 2012-09-21 10:05:24 -04:00
Aryeh Gregor
387d2921ba Bug 783523 - Fix platform-specific nsresult misuse; r=ehsan,tbsaunde,smaug 2012-08-16 14:58:11 +03: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
Brian R. Bondy
990ad9427f Bug 770911 - Remove all prefetch clearing code. r=taras. 2012-08-02 10:50:29 -04:00
Aryeh Gregor
8b4a23fc4c Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
Brian R. Bondy
d472756a9c Bug 770899 - Prefetch clearing should be repurposed to delete 0 sized read only .pf files only. r=taras 2012-07-09 19:00:03 -04:00
Brian R. Bondy
7fc2166903 Bug 773105 - r=rstrong 2012-07-11 21:48:20 -04:00
Brian R. Bondy
250c796e2b Bug 770883 - Disable functionality for clearing prefetch. r=taras 2012-07-06 07:41:41 -04:00
David Zbarsky
9050aef271 Bug 763350 - Clean up some includes in content/ and dom/ r=smaug 2012-07-01 16:45:59 -07:00
Brian R. Bondy
ca0c477771 Bug 758463 - Windows XP does not clear prefetch on updates. r=jimm 2012-06-15 10:37:55 -04:00
Brian R. Bondy
d5edddd2ef Bug 764515 - When setting default browser in Windows 8, should also set non http defaults. r=jimm 2012-06-14 22:19:39 -04:00
Brian R. Bondy
6af9f6b835 Bug 760680 - Update shell integration default browser check for Windows 8. r=jimm 2012-06-08 09:19:01 -04: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
Brian R. Bondy
1fbe261fee Bug 756846 - Increase timeout to 3 minutes for prefetch clearing. r=rstrong 2012-05-27 22:40:48 -04:00
Brian R. Bondy
a3bcca99ed Bug 692255 - Get rid of prefetch files on Windows for faster startup. r=rstrong 2012-05-27 22:40:48 -04: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
Jacek Caban
b44df7d951 Bug 739919 - browser/components/build fails to link on mingw r=jimm 2012-03-30 13:33:06 +02:00
Robert Strong
f09afd945b Bug 491947 - Disable DDE shell integration. r=jmathies 2012-03-26 12:45:29 -07:00
Mark Capella
590ec2e743 Bug 721496 - Remove MOZ_WINSDK_TARGETVER ifdefs for pre-Windows 7 SDKs. r=jimm 2012-02-23 01:33:19 +01: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
Gavin Sharp
88d85897c5 Bug 719538: make nsWindowsShellService use nsIWindowsRegKey, r=jmathies 2012-01-19 11:44:27 -08:00
Makoto Kato
22f57d63a2 Bug 693227 - Remove nsIWindowsShellService.unreadMailCount. r=jimm 2011-11-14 05:56:03 +01:00
Jim Mathies
6975059ebf Bug 577867 - Update installer to use new city hash taskbar registration ids. r=rstrong 2011-11-03 09:39:51 -05: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
Brian R. Bondy
a2db1840ce Bug 693110 - crash fix for nsWindowsShellService::GetShouldCheckDefaultBrowser. r=jimm 2011-10-13 10:16:45 -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
Michael Wu
34247e34f4 Bug 676188 - Misc misuses of PRBool caught by the compiler, r=jimm,jst,bz,dougt,roc,mak 2011-08-30 11:55:14 -07:00
Ed Morley
1473544eb5 Bug 651622 - Remove WinCE code from browser/* r=dolske 2011-04-22 01:14:59 +02:00
Jim Mathies
21bf5968e6 Bug 562753 - On upgrade, update AppUserModelID for application shortcuts. r=rstrong. 2010-05-14 19:24:50 -05:00
b5a944ae14 Bug 531174 [@ WriteBitmap], r=joe 2009-12-13 09:11:39 -08:00
Bobby Holley
464b4712e3 Bug 435296 - Decode-On-Draw. r=joe,roc,bz,dolske,peterw sr=vlad 2009-09-12 16:44:18 -06:00
Paul O’Shannessy
fed595f029 Bug 512524 - Unable to set image as desktop background, r=robert.bugzilla 2009-08-28 13:05:03 -07:00
Paul O’Shannessy
93a3541851 Bug 507032 - "Set As Desktop Background..." doesn't work on Windows CE, r=robert.bugzilla 2009-08-01 16:21:58 -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
Robert Strong
7465275672 Bug 500251 - Cannot set set Minefield as default browser on Windows CE. r=vlad 2009-07-08 13:51:21 -07:00
Siddharth Agarwal
5841d49bf7 Part 3 of bug 472093 -- fix build system to use NTDDI_VERSION instead of random checks -- add MOZ_NTDDI_* defines, switch code over to use these defines.
r=ted for build config parts, r=jmathies for app association and download manager changes, r+sr=bz for helper app service, r=vlad + sr=ted for stock icons.
2009-04-12 20:25:29 +05:30
James Boston
0fa4ea2cb7 Bustage fix for bug 442393. 2009-03-09 15:14:05 -04:00
Robert Strong
5a37e12adf Bug 456895 - Error: Uncaught Exception [@ nsIShellService.isDefaultBrowser][@ delayedStartup] (GetShortPathNameW fails due to permissions). r=mconnor 2009-02-15 15:03:59 -08:00
Vladimir Vukicevic
bb5c1b102e b=477727; fix shell service and disable migration browser component for Windows CE; r=gavin 2009-02-11 18:24:53 -08:00
Robert Strong
6b81373de7 Correctness fix for Bug 447934 - Default browser check doesn't return false if the registry key doesn't exist. r=jmathies 2008-08-04 23:48:06 -07:00
Robert Strong
ecafd23731 Bug 447934 - Default browser check doesn't return false if the registry key doesn't exist. r=jmathies 2008-08-04 23:13:44 -07:00
df0cfde79e Bug 428970: Implement --disable-vista-sdk-requirements configure option and update source to use it, patch by Jim Mathies <jmathies@mozilla.com>, r=rob_strong, r=bsmedberg, a=beltzner 2008-04-25 09:44:16 -07:00
8ddfecc2b7 backing out: switching narrow char system calls to wide char in windows b=418703 2008-03-11 15:46:26 -07:00
b15bf8e6be switching narrow char system calls to wide char in windows b=418703 r=bsmedberg r=dougt also looked at by stuart and roc a=beltzner and a=damon 2008-03-11 14:49:53 -07:00
dd927b4679 backing out b=418703, caused test 40118 to fail on WINNT 5.2 qm-win2k3-01 dep unit test tinderbox 2008-03-05 14:56:43 -08:00