Felipe Gomes
|
3394ae8e4c
|
Bug 782468. Basic telemetry for SocialAPI. r=froydnj,mixedpuppy
|
2012-08-24 17:24:52 -07:00 |
|
David Rajchenbach-Teller
|
6be509e906
|
Bug 783676 - Export OS.Path (companion test suite). r=taras
|
2012-08-24 16:18:16 -04:00 |
|
David Rajchenbach-Teller
|
d4aca058c1
|
Bug 783676 - Normalize "../../..". r=taras
|
2012-08-24 16:18:16 -04:00 |
|
David Rajchenbach-Teller
|
0962e799e8
|
Bug 783676 - Export OS.Path. r=taras
|
2012-08-24 16:18:16 -04:00 |
|
David Rajchenbach-Teller
|
74b8f71a82
|
Bug 761138 - Create/remove directories (testsuite). r=froydnj
|
2012-08-24 16:18:16 -04:00 |
|
David Rajchenbach-Teller
|
98096a724b
|
Bug 761138 - Create/remove directories (Windows version). r=froydnj
|
2012-08-24 16:18:15 -04:00 |
|
David Rajchenbach-Teller
|
b39ae853e2
|
Bug 761138 - Create/remove directories (Unix version). r=froydnj
|
2012-08-24 16:18:15 -04:00 |
|
Nathan Froyd
|
befe254f2a
|
Bug 781531 - generate histogram information from JSON; r=taras
|
2012-08-24 15:54:55 -04:00 |
|
Brian R. Bondy
|
20d5018954
|
Bug 784657 - Fix potential problem in nsDIskCacheMap timer handling. r=michal
|
2012-08-23 22:23:10 -04:00 |
|
Luke Wagner
|
d84f26ee0d
|
Bug 625199 - Convert one more JSAutoEnterCompartment in ObserverPair.h (r=bustage)
|
2012-08-23 18:13:08 -07:00 |
|
Luke Wagner
|
94264a0bc8
|
Bug 625199 - s/JSAutoEnterCompartment/JSAutoCompartment/ and make it infallible (r=bholley)
--HG--
extra : rebase_source : 12acf2288285f5caefd7fecea8207de3a47eab5b
|
2012-08-21 18:42:53 -07:00 |
|
Ben Turner
|
0727b7098c
|
Bug 784726 - 'Remove old IPC::URI'. r=cjones+khuey.
--HG--
rename : ipc/glue/IPCSerializableParams.ipdlh => ipc/glue/InputStreamParams.ipdlh
extra : transplant_source : %A6%BC%8B%8D%3A_%7Df%2B%FE%AA%94%81%AB%CAW%15K%A7%03
|
2012-08-23 12:33:46 -07:00 |
|
Nathan Froyd
|
df4ab23274
|
Bug 781200 - fixup several cache histograms; r=bsmith,hurley
|
2012-08-23 13:23:03 -04:00 |
|
Bobby Holley
|
7d93b33884
|
Bug 784560 - Fix more tests. r=mccr8
|
2012-08-23 11:45:28 -07:00 |
|
Nathan Froyd
|
bcd485a059
|
Bug 764190 - fix PLACES_EXPIRATION_STEPS_TO_CLEAN telemetry; r=taras,mak
|
2012-08-07 15:46:39 -04:00 |
|
Ehsan Akhgari
|
1c81138c6c
|
Bug 579517 follow-up: Remove NSPR types that crept in
|
2012-08-23 11:30:56 -04:00 |
|
Ed Morley
|
5e2606362a
|
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
|
2012-08-23 11:29:20 +01:00 |
|
Tim Taubert
|
bb4a8970e4
|
merge m-c to fx-team
|
2012-08-22 22:15:08 -07:00 |
|
Blair McBride
|
ce5f03d905
|
Bug 775072 - Inline autocomplete munges URLs that contain characters that would normally be escaped. r=mak
|
2012-08-23 00:44:19 +12:00 |
|
Phil Ringnalda
|
de63f18122
|
Back out cbb72643bbae (bug 723362) for leaking
|
2012-08-20 20:28:19 -07:00 |
|
Shane Caraveo
|
ce4474f75e
|
Bug 779686 - implement docked chat content areas, r=felipe
--HG--
extra : transplant_source : c%29h%B5%89%27%F3S%C0%B6%CB%82%A27%3C%0D%AEL%14V
|
2012-08-20 17:52:26 -07:00 |
|
Jared Wein
|
8ccee29469
|
Bug 779360 - Implement mozSocial.isVisible API for social sidebar window, r=felipe
--HG--
extra : transplant_source : %1FB%A6T%7B%9D%60T%E6%95%CD%A7%27%E5%00%60%A5%B8%84%F8
|
2012-08-20 14:18:50 -07:00 |
|
Michal Novotny
|
80ac487418
|
Bug 723362 - Make an asynchronous variant of nsCacheEntryDescriptor::Doom, r=hurley
|
2012-08-21 03:30:40 +02:00 |
|
Ehsan Akhgari
|
0fd9123eac
|
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 |
|
Rafael Ávila de Espíndola
|
b9989b51cc
|
Bug 783154 - Refactor the chrome hang code to use the same class as write poisoning. r=taras,benwa,vladan.
--HG--
extra : rebase_source : 1f43ac88ceabc698ba0a58715562db90af1c266f
|
2012-08-21 17:14:38 -04:00 |
|
Vladan Djeric
|
e066a9546b
|
Bug 779310: Remove string literals from slowSql reports. r=taras
|
2012-08-21 15:29:28 -04:00 |
|
Gian-Carlo Pascutto
|
bb1c70d0fd
|
Bug 779687 - Add detection for ARMv7 CPUs. r=dougt
|
2012-08-21 13:20:46 +02:00 |
|
Gian-Carlo Pascutto
|
a20ae1b4cf
|
Bug 779687 - Telemetry around Fennec OOM kills. r=blassey
|
2012-08-21 13:20:26 +02:00 |
|
Brian R. Bondy
|
b881c5e5b0
|
Bug 777328 - Gather telemetry data for how much cache corruption reduction plan would help. r=michal
|
2012-08-20 08:08:46 -04:00 |
|
David Rajchenbach-Teller
|
cfa861eeab
|
Bug 782303 - Serialize directory entries. r=froydnj
|
2012-08-18 12:26:35 -04:00 |
|
David Rajchenbach-Teller
|
e77291ae46
|
Bug 776259 - Serialize file info. r=froydnj
|
2012-08-18 12:26:35 -04:00 |
|
David Rajchenbach-Teller
|
4db449a360
|
Bug 771929 - Serialize numbers. r=froydnj
|
2012-08-18 12:26:35 -04:00 |
|
David Rajchenbach-Teller
|
0035caf975
|
Bug 783284 - [OS.File] Rename *Time to *Date. r=froydnj
|
2012-08-18 08:25:49 -04:00 |
|
Bill McCloskey
|
d2442e81a4
|
Bug 783147 - Collect telemetry for SCC GC sweeping (r=mccr8)
|
2012-08-17 18:44:54 -07:00 |
|
Bill McCloskey
|
c055d5c416
|
Backout bug 783147 (12753a1a11b8 and 0a70fc2d7d25) for WinXP dbg M-3 failures
|
2012-08-17 12:55:52 -07:00 |
|
Bill McCloskey
|
11bc34c5ce
|
Bug 783147 - Send telemetry about SCC GC times (r=mccr8)
|
2012-08-17 10:05:11 -07:00 |
|
David Rajchenbach-Teller
|
ff7c2d6d51
|
Bug 780501 - Path types for OS.File;r=froydnj
|
2012-08-16 22:05:30 -04:00 |
|
David Rajchenbach-Teller
|
b661c92be0
|
Bug 771928 - Test OS.File pointer arithmetic. r=froydnj
|
2012-08-16 22:05:30 -04:00 |
|
David Rajchenbach-Teller
|
f265533a1c
|
Bug 771928 - OS.File pointer arithmetics. r=froydnj
|
2012-08-16 22:05:30 -04:00 |
|
Nathan Froyd
|
c260f0ae51
|
Bug 783050 - tweak STARTUP_MEASUREMENT_ERRORS histogram definition; r=taras
|
2012-08-15 15:06:06 -04:00 |
|
Nathan Froyd
|
db19f560f7
|
Bug 779298 - part 2: fix fetching of lastShutdownDuration and add a test; r=taras
|
2012-08-02 10:57:59 -04:00 |
|
Nathan Froyd
|
6e622a8f16
|
Bug 779298 - part 1: store shutdown times in profile directory and initialize class members; r=dougt
|
2012-08-01 12:06:28 -04:00 |
|
Ed Morley
|
1325d46f1a
|
Backout c4b249ca469b & 5bd90df027d0 (bug 779298) for assertions on OS X
|
2012-08-16 17:00:10 +01:00 |
|
Nathan Froyd
|
df2f16a943
|
Bug 782117 - part 2: don't save pings that already exist on disk; r=taras
|
2012-08-13 09:26:24 -04:00 |
|
Nathan Froyd
|
cae27e9702
|
Bug 782117 - part 1: don't use safe-file-output-stream when writing ping data; r=taras
|
2012-08-15 13:16:08 -04:00 |
|
Nathan Froyd
|
dca524a517
|
Bug 779298 - part 2: fix fetching of lastShutdownDuration and add a test; r=taras
|
2012-08-02 10:57:59 -04:00 |
|
Nathan Froyd
|
c0d184dc43
|
Bug 779298 - part 1: store shutdown times in profile directory and initialize class members; r=dougt
|
2012-08-01 12:06:28 -04:00 |
|
Nathan Froyd
|
7bc17507cf
|
Bug 782373 - use HISTOGRAM_BOOLEAN more consistently; r=taras
--HG--
extra : rebase_source : 5ab66c02696a4e7a595504dcf4f72e3f44380325
|
2012-08-13 14:49:10 -04:00 |
|
Aryeh Gregor
|
04236844ff
|
Bug 782252 - Cast some nsresult to PRUint32; r=ehsan
|
2012-08-09 11:36:40 +03:00 |
|
Andrew Hurle
|
73b0dda405
|
Bug 634139 - Add a service for finding the representative color in an image. r=MattN
--HG--
extra : rebase_source : 111c2a3e6b0abfd8b75b90afbe5e736f80ff2939
|
2012-08-03 14:18:00 -07:00 |
|
Gian-Carlo Pascutto
|
8830facf6b
|
Bug 673470 - Update the new SafeBrowsing code to MPL 2.0. r=dcamp
|
2012-08-15 09:10:56 +02:00 |
|
Gian-Carlo Pascutto
|
cb37e8e991
|
Bug 673470 - Skip chunks we already have during merges. r=dcamp
|
2012-08-15 09:10:39 +02:00 |
|
Gian-Carlo Pascutto
|
9edd935068
|
Bug 673470 - Simplify PrefixSet by removing (unneeded) thread safety. r=dcamp
|
2012-08-15 09:10:24 +02:00 |
|
Gian-Carlo Pascutto
|
2eadd943e7
|
Bug 738533 - Replace NS_QuickSort use by qsort. r=dcamp
|
2012-08-15 09:10:07 +02:00 |
|
Gian-Carlo Pascutto
|
f5f2594165
|
Bug 750625 - crash in nsUrlClassifierPrefixSet::GetPrefixes. r=dcamp
|
2012-08-15 09:09:53 +02:00 |
|
Gian-Carlo Pascutto
|
dec706d5ae
|
Bug 673470 - Remove some unneeded PromiseFlatCString. r=dcamp
|
2012-08-15 09:09:40 +02:00 |
|
Gian-Carlo Pascutto
|
f46a9e09d4
|
Bug 673470 - Make the PrefixSet/LookupCache construction infallible again. r=dcamp f=jlebar
|
2012-08-15 09:09:25 +02:00 |
|
Gian-Carlo Pascutto
|
a8c4d5f9db
|
Bug 673470 - Expire SubPrefixes that can't do anything immediately. r=dcamp
|
2012-08-15 09:08:51 +02:00 |
|
Gian-Carlo Pascutto
|
d8dee3d281
|
Bug 673470 - Don't resort if not needed. Fix comparator. Cleanups. r=dcamp
|
2012-08-15 09:08:37 +02:00 |
|
Gian-Carlo Pascutto
|
3403df5b2f
|
Bug 673470 - Fix wrong order of arguments to KeyedHash function. r=dcamp
|
2012-08-15 09:08:23 +02:00 |
|
Gian-Carlo Pascutto
|
08b56e92fc
|
Bug 673470 - Fix order of SubPrefix Knockouts. r=dcamp
|
2012-08-15 09:08:09 +02:00 |
|
Gian-Carlo Pascutto
|
5947481955
|
Bug 673470 - Remove unused compare functions. r=dcamp
|
2012-08-15 09:07:56 +02:00 |
|
Gian-Carlo Pascutto
|
a13f48e7cf
|
Bug 673470 - Fix inconsistent variable naming. r=dcamp
|
2012-08-15 09:07:36 +02:00 |
|
Gian-Carlo Pascutto
|
0686262763
|
Bug 673470 - Fix format description in HashStore.cpp. r=dcamp
|
2012-08-15 09:07:23 +02:00 |
|
Gian-Carlo Pascutto
|
8e324b990e
|
Bug 768871 - Provide an option to disable per-client randomization. r=dcamp
|
2012-08-15 09:07:10 +02:00 |
|
Gian-Carlo Pascutto
|
6ded7207a2
|
Bug 730247 - Use byteslice coding for SafeBrowsing data. r=dcamp
|
2012-08-15 09:06:54 +02:00 |
|
Gian-Carlo Pascutto
|
c8daec3f7e
|
Bug 729640 - Fix broken UrlClassifier assertion. r=dcamp
|
2012-08-15 09:05:32 +02:00 |
|
Gian-Carlo Pascutto
|
6f527b11cb
|
Bug 726002 - Clear some big nsTArrays as early as possible in updates. r=dcamp
|
2012-08-15 09:05:18 +02:00 |
|
Gian-Carlo Pascutto
|
3482744475
|
Bug 726002 - More OOM handling in UrlClassifier. r=dcamp
|
2012-08-15 09:05:08 +02:00 |
|
Gian-Carlo Pascutto
|
6cd4e0ecf4
|
Bug 725597 - SafeBrowsing fails to update persistent PrefixSet on Windows. r=dcamp
|
2012-08-15 09:04:51 +02:00 |
|
Gian-Carlo Pascutto
|
5a5335d7a3
|
Bug 673470 - Optimize input buffer size. Cache active tables. r=dcamp
|
2012-08-15 09:04:31 +02:00 |
|
Gian-Carlo Pascutto
|
1c38a63dbe
|
Bug 673470 - Replace the sqlite safeb store with a flat file. r=dcamp
|
2012-08-15 09:04:19 +02:00 |
|
David Rajchenbach-Teller
|
95ee23b5f6
|
Bug 773643 - Test (de)serialization of errors. r=froydnj
|
2012-08-14 19:56:47 -04:00 |
|
David Rajchenbach-Teller
|
050ed6cb53
|
Bug 773643 - Serialize Windows errors. r=froydnj
|
2012-08-14 19:56:47 -04:00 |
|
David Rajchenbach-Teller
|
f870ac5d07
|
Bug 773643 - Serialize Unix errors. r=froydnj
|
2012-08-14 19:56:47 -04:00 |
|
Ehsan Akhgari
|
805b10b6d6
|
Merge removal of nsnull
|
2012-08-14 11:29:00 -04:00 |
|
Justin Lebar
|
8a615581c4
|
Bug 769254 - Part 2: Modify nsPIWindowWatcher::OpenWindowJS (renamed to OpenWindow2) so we can pass in the URL for target=_blank links without navigating the opened window to that URL. r=bz
|
2012-08-14 10:58:00 -04:00 |
|
Gavin Sharp
|
233600650d
|
Bug 782287: better delineate SocialService initialization code from provider loading, and lazy-load MozSocialAPI module only when needed, r=adw
--HG--
extra : rebase_source : d1332eb18312255368a985b64d62d76e1fc00a50
|
2012-08-13 11:20:29 -04:00 |
|
Mark Capella
|
f6b3d51d4a
|
Bug 772272 - Remove do_load_httpd_js from xpcshell tests, Toolkits, r=ted, f=gps
|
2012-08-14 10:06:12 -04:00 |
|
Aryeh Gregor
|
6a9cec29c8
|
Bug 626472 part 3 - Remove nsnull for good; r=ehsan
|
2012-08-12 13:43:47 +03:00 |
|
David Rajchenbach-Teller
|
5be0b90c6a
|
Bug 780499 - Companion testsuite. r=froydnj
|
2012-08-13 21:54:43 -04:00 |
|
David Rajchenbach-Teller
|
1124c8d92a
|
Bug 780499 - Rearrange setPosition constants. r=froydnj
|
2012-08-13 21:54:43 -04:00 |
|
David Rajchenbach-Teller
|
9a6bba01ef
|
Bug 771927 - Companion testsuite. r=froydnj
|
2012-08-13 21:54:43 -04:00 |
|
David Rajchenbach-Teller
|
31f7f794c6
|
Bug 771927 - [OS.File] (de)serialize ArrayBuffer, C arrays, C pointers, Strings - Implementation. r=froydnj
|
2012-08-13 21:54:42 -04:00 |
|
Bill McCloskey
|
c31671f405
|
Bug 781945 - Improve GC telemetry (r=mccr8)
|
2012-08-13 10:30:44 -07:00 |
|
Honza Bambas
|
541453729c
|
Bug 215450: Allow uploading of files greater than 2gb in size. Involves making input streams 64-bit capable. Significant work done by Makoto Kato, finished by Honza Bambas. r=hbambas,bsmedberg,jdrew,sicking
|
2012-08-10 22:44:11 -04:00 |
|
Phil Ringnalda
|
66e7c87620
|
Backout dcb9d2f694eb (bug 769254) for Windows test_resize_move_windows.html M3 failures
|
2012-08-10 18:51:29 -07:00 |
|
Rafael Ávila de Espíndola
|
6d043cb564
|
Bug 780272 - Audit calls to MozillaUnRegisterDebugFD. r=jlebar.
--HG--
extra : rebase_source : 53672602bfd370626916bcd0f5bc71859f8520c2
|
2012-08-10 12:40:21 -04:00 |
|
David Rajchenbach-Teller
|
5497844d09
|
Bug 770215 - [OS.File] Utilities for strings - Tests for Unicode conversion. r=froydnj
|
2012-08-10 11:52:56 -04:00 |
|
David Rajchenbach-Teller
|
7ff77dd75b
|
Bug 770215 - [OS.File] Utilities for strings - Companion makefile. r=yoric
|
2012-08-10 11:52:56 -04:00 |
|
David Rajchenbach-Teller
|
43ce31ba07
|
Bug 770215 - [OS.File] Utilities for strings - Expose native code to JS. r=froydnj
|
2012-08-10 11:52:55 -04:00 |
|
David Rajchenbach-Teller
|
0f997f7508
|
Bug 770215 - [OS.File] Utilities for strings - Native code. r=froydnj
|
2012-08-10 11:52:55 -04:00 |
|
Justin Lebar
|
badc95dec3
|
Bug 769254 - Part 2: Modify nsPIWindowWatcher::OpenWindowJS (renamed to OpenWindow2) so we can pass in the URL for target=_blank links without navigating the opened window to that URL. r=bz
--HG--
rename : layout/reftests/svg/pattern-scale-01c.svg => layout/reftests/svg/pattern-scale-01a.svg
extra : rebase_source : 1e934ffb7a561255430bea738aa204afcaf92c79
|
2012-08-10 11:42:28 -04:00 |
|
Aryeh Gregor
|
0923bf00ef
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
Jacek Caban
|
bf4e55d41f
|
Bug 782204 - Fixed osfileutils.cpp compilation on case sensitive OSes r=dteller
--HG--
extra : rebase_source : 57687cc61a8af200fe499b47bb201d43b0b169ea
|
2012-08-14 11:17:53 +02:00 |
|
Gavin Sharp
|
eb7f0ad2b8
|
Bug 781386: add pref to avoid loading built-in providers during test runs, r=markh/mixedpuppy
--HG--
rename : browser/base/content/test/browser_shareButton.js => browser/base/content/test/browser_social_shareButton.js
extra : rebase_source : df925f95972462d0f8d07f1e0810dc22da0f1911
|
2012-08-08 18:09:37 -07:00 |
|
David Rajchenbach-Teller
|
f86d87fbff
|
Bug 772187 - OS.Type refactoring (Unix-specific). r=froydnj
|
2012-08-09 15:13:46 -04:00 |
|
David Rajchenbach-Teller
|
b9039f17ce
|
Bug 772187 - OS.Type refactoring (Windows-specific). r=froydnj
|
2012-08-09 15:13:46 -04:00 |
|
David Rajchenbach-Teller
|
623e3fe223
|
Bug 772187 - OS.Type refactoring (shared code). r=froydnj
|
2012-08-09 15:13:46 -04:00 |
|
Ed Morley
|
afd5340800
|
Merge mozilla-central to mozilla-inbound
|
2012-08-09 12:51:21 +01:00 |
|
Ed Morley
|
61bd42dc2d
|
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
|
2012-08-09 12:46:05 +01:00 |
|
Ms2ger
|
17e25febb8
|
Bug 780387 - Part d: Stop using PRFloat64; r=bsmedberg
|
2012-08-09 09:09:42 +02:00 |
|
Aryeh Gregor
|
98c0410ea1
|
Bug 777292 - modules/libpref/, toolkit/: Fix incorrect conversions to nsresult; r=bsmedberg
|
2012-07-30 12:24:36 +03:00 |
|
William Chen
|
aad73e8f00
|
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
|
2720141512
|
Bug 776134 - Part 1: Rename files of Growl nsIAlertsService implementation. r=dougt
|
2012-08-01 20:31:11 -04:00 |
|
David Rajchenbach-Teller
|
e34177f37f
|
Bug 775588 - Test that temporary directory, profile directory are present. r=yoric
--HG--
extra : rebase_source : ec3ac0e47c1b86241cee965c3bad14bc5ca28116
|
2012-08-22 16:58:09 -04:00 |
|
Josh Aas
|
fed62f1610
|
Bug 728106: Add Notification Center support for OS X 10.8. r=smichaud,dougt
--HG--
rename : toolkit/components/alerts/mac/nsGrowlAlertsService.h => toolkit/components/alerts/mac/nsMacAlertsService.h
rename : toolkit/components/alerts/mac/nsGrowlAlertsService.mm => toolkit/components/alerts/mac/nsMacAlertsService.mm
|
2012-08-22 15:30:13 -04:00 |
|
Nathan Froyd
|
e0afb6f554
|
Bug 781152 - make telemetry ping save directory properly readable on Unix-ish platforms; r=taras
|
2012-08-08 10:51:18 -04:00 |
|
Ed Morley
|
66bb79039e
|
Backout ec46cfa51bf8, 4a54f06efee8, de811fbd27b0 & 67ea1314c777 (bug 567077) for causing bug 781141
|
2012-08-08 13:11:34 +01:00 |
|
David Rajchenbach-Teller
|
c87d5c927f
|
Bug 780498 - Test that OS.File.move removes original file. r=yoric
|
2012-08-07 20:49:07 -04:00 |
|
David Rajchenbach-Teller
|
53579568fe
|
Bug 780498 - More general fix. r=nfroyd
|
2012-08-07 20:49:07 -04:00 |
|
Aryeh Gregor
|
6e5854f625
|
Bug 777292 - modules/libpref/, toolkit/: Remove conversions to nsresult that will always result in NS_SUCCEEDED; r=bsmedberg
|
2012-07-27 16:54:09 +03:00 |
|
Aryeh Gregor
|
48c36e7140
|
Bug 779442 - Fix a few more incorrect uses of nsresult; r=ehsan
|
2012-08-01 11:17:10 +03:00 |
|
Phil Ringnalda
|
2bcf35cc4b
|
Backout e662aa8c9389 (Bug 780604), 3979c98e3e9a:5ccb28fc0bee (Bug 780498) for Windows orange
|
2012-08-07 21:26:41 -07:00 |
|
Paul Adenot
|
6d3ce88e68
|
Bug 567077 - Sniff types of media files that are served with no Content-Type r=cpearce
|
2012-08-07 15:54:30 -07:00 |
|
David Rajchenbach-Teller
|
a6036642b9
|
Bug 780604 - Fix merge snafu in Windows version of OS.File.DirectoryIterator. r=yoric
|
2012-08-07 20:49:07 -04:00 |
|
David Rajchenbach-Teller
|
538b4b8836
|
Bug 780498 - Test that OS.File.move removes original file. r=yoric
|
2012-08-07 20:49:07 -04:00 |
|
David Rajchenbach-Teller
|
1e31a52ae9
|
Bug 780498 - More general fix. r=nfroyd
|
2012-08-07 20:49:07 -04:00 |
|
Nick Hurley
|
63c3cf1b49
|
bug 709297 - reduce max cache size to 350MiB the next time we have to trash the cache. r=jduell
|
2012-08-07 15:46:33 -07:00 |
|
Ryan VanderMeulen
|
3073aaa004
|
Backout 0127c9c41bf2 (test for bug 780498) due to orange.
|
2012-08-06 23:04:12 -04:00 |
|
David Rajchenbach-Teller
|
e540621ec1
|
Bug 780498 - Test that OS.File.move removes the original file. r=nfroyd
|
2012-08-06 20:27:04 -04:00 |
|
Jan Varga
|
8fb6c69c76
|
Bug 779684 - Move FrameIteratorFlags to nsFrameIterator class. r=roc
|
2012-08-06 20:27:04 -04:00 |
|
David Zbarsky
|
d50e4a7565
|
[Bug 780428] Don't include nsIFrame.h in places where it's not necessary r=roc
|
2012-08-05 23:00:56 -04:00 |
|
David Zbarsky
|
0039e134c7
|
Bug 779684: Create a stack-based nsFrameIterator class out of nsIFrameTraversal and nsIFrameEnumerator r=roc
--HG--
rename : layout/base/nsFrameTraversal.cpp => layout/base/nsFrameIterator.cpp
rename : layout/base/nsFrameTraversal.h => layout/base/nsFrameIterator.h
|
2012-08-05 23:00:55 -04:00 |
|
Ms2ger
|
c7a5b33778
|
Bug 716822 - Move attributes and methods on nsIDOMNSEvent to nsIDOMEvent; r=smaug
|
2012-08-04 09:44:00 +02:00 |
|
Mike Hommey
|
6173fa297f
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Ed Morley
|
bba173e66e
|
Revert inbound to 3d5d1daa2505 to stop OS X M5 failures (backout not clean/could have been a bad merge) on a CLOSED TREE
|
2012-08-04 18:05:15 +01:00 |
|
Ms2ger
|
2529739530
|
Merge m-c to m-i.
|
2012-08-04 13:02:15 +02:00 |
|
Ed Morley
|
2ad4635648
|
Backout fce1836888b4 (bug 778608) for failures in browser_webconsole_bug_595934_message_categories.js on a CLOSED TREE
|
2012-08-04 09:53:30 +01:00 |
|
Mike Hommey
|
4e998b1d36
|
Backout changeset 2ef51674316a (bug 774032 bonus) for various Mochitest bustages on a CLOSED TREE
|
2012-08-04 10:38:41 +02:00 |
|
Ms2ger
|
babf67cce2
|
Bug 716822 - Move attributes and methods on nsIDOMNSEvent to nsIDOMEvent; r=smaug
|
2012-08-04 09:44:00 +02:00 |
|
Mike Hommey
|
17fb6cad2d
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 08:48:56 +02:00 |
|
Andres Hernandez
|
ece5ac35a6
|
Bug 621564. Use Map in nsContentPrefService's cache. r=felipe
|
2012-08-03 09:43:08 -06:00 |
|
Devdatta Akhawe
|
a7f111cd79
|
Bug 767676 - Implement Security UI Telemetry. r=honzab,bsmith,felipc,dtownsend
|
2012-08-02 18:51:17 -07:00 |
|
Blair McBride
|
17a2129b49
|
Bug 780313 - Remove unnecessary preprocessing of Toolkit files. r=gavin
|
2012-08-04 13:22:55 +12:00 |
|
Justin Dolske
|
6f24cb5e1f
|
Bug 778608 - Move SafeBrowsing.jsm to toolkit. r=gavin
--HG--
rename : browser/components/safebrowsing/content/blockedSite.xhtml => browser/base/content/blockedSite.xhtml
rename : browser/components/safebrowsing/content/report-phishing-overlay.xul => browser/base/content/report-phishing-overlay.xul
rename : browser/components/safebrowsing/content/test/browser_bug400731.js => browser/base/content/test/browser_bug400731.js
rename : browser/components/safebrowsing/content/test/browser_bug415846.js => browser/base/content/test/browser_bug415846.js
rename : browser/components/safebrowsing/SafeBrowsing.jsm => toolkit/components/url-classifier/SafeBrowsing.jsm
|
2012-08-03 17:58:46 -07:00 |
|
Jared Wein
|
16f23ea4f9
|
Bug 776606 - Require user portraits in the Social API to use http, https, or data schemes. r=gavin
|
2012-08-02 15:30:19 -07:00 |
|
Brian R. Bondy
|
51839a9bea
|
Bug 770911 - Remove all prefetch clearing code. r=taras.
|
2012-08-02 10:50:29 -04:00 |
|
Justin Dolske
|
d49c55d311
|
Bug 778606 - SafeBrowsing.jsm should use nsUrlFormatter. r=gcp, f=gavin
|
2012-08-01 15:52:47 -07:00 |
|
Jared Wein
|
d2baf97975
|
Backed out changeset 68e5b042c0f5 (bug 776606) for leaks.
|
2012-08-01 13:56:21 -07:00 |
|
Jared Wein
|
d78c86b479
|
Bug 776606 - Require user portraits in the Social API to use http, https, or data schemes. r=gavin
|
2012-08-01 10:39:37 -07:00 |
|
Nicolas Chaim
|
c0e6d9c613
|
Bug 770317: Fix class name in mof file. r=glandium
|
2012-07-31 14:54:58 -04:00 |
|
Benjamin Peterson
|
643f7f3a6a
|
Backout 56e0971c81ea for oth test bustage
|
2012-07-30 20:59:25 -07:00 |
|
Jared Wein
|
0fe187f956
|
Bug 776606 - Possible chrome-level JS injection attack with user portraits in the Social API. r=gavin
|
2012-07-30 19:28:23 -07:00 |
|
Ryan VanderMeulen
|
9ab78d95a2
|
Backout 83e0b185e888 (bug 778606) due to orange.
|
2012-07-30 20:14:29 -04:00 |
|
Justin Dolske
|
fc2be5e9bc
|
Bug 778606 - SafeBrowsing.jsm should use nsUrlFormatter. r=gcp
|
2012-07-30 16:02:05 -07:00 |
|
Aryeh Gregor
|
903f6c9c84
|
Bug 777292 - Convert incorrect conversions to nsresult and fix named constants; r=ehsan
|
2012-07-27 16:59:29 +03:00 |
|
Aryeh Gregor
|
e806eeab4f
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Nicolas Chaim Echeverria
|
cfbb256482
|
Bug 765351 - Add telemetry probe for startup I/O. r=taras
|
2012-07-27 13:14:15 -04:00 |
|
Vladan Djeric
|
1f3b5adfaf
|
Bug 765351 - Undo previous commit with wrong author
|
2012-07-27 13:10:45 -04:00 |
|