Birunthan Mohanathas
|
80ef08ccd8
|
Bug 1046841 - Fix more style violations in previously touched .cpp files in xpcom/. r=froydnj
|
2014-08-25 12:17:15 -07:00 |
|
Birunthan Mohanathas
|
c70ab152cb
|
Bug 1050003 - Remove unnecessary if checks before delete-ing in xpcom/. r=froydnj
|
2014-08-08 07:04:45 -07:00 |
|
Valentin Gosu
|
14c0879417
|
Bug 1036070 - Remove dangerous public destructor of VisualEventTracer r=froydnj
|
2014-07-13 21:16:55 +03:00 |
|
Birunthan Mohanathas
|
c9fb2c0d48
|
Bug 1022456 - Fix modelines in xpcom/{base,glue,io,string,threads}/. r=froydnj
|
2014-06-30 08:39:45 -07:00 |
|
Birunthan Mohanathas
|
952b834c76
|
Bug 869836 - Part 9: Use AssignLiteral instead of Assign(NS_LITERAL_STRING(...)) . r=ehsan
|
2014-05-22 06:48:52 +03:00 |
|
Birunthan Mohanathas
|
19bebbc68d
|
Bug 869836 - Part 2: Use AppendLiteral instead of Append(NS_LITERAL_STRING(...)) . r=ehsan
|
2014-05-22 06:48:50 +03:00 |
|
Birunthan Mohanathas
|
0d2648eb80
|
Bug 995730 - Fix style violations in xpcom/base/ (part 2). r=froydnj
|
2014-05-14 23:14:58 +03:00 |
|
Birunthan Mohanathas
|
fb371cca99
|
Bug 995730 - Fix style violations in xpcom/base/. r=froydnj,continuation
|
2014-05-13 20:41:38 +03:00 |
|
Birunthan Mohanathas
|
8f4f3e6fea
|
Bug 995730 - Change xpcom/base/ to use 2 space indentation
This also removes trailing whitespace in reindented files.
|
2014-05-05 20:30:39 +03: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 |
|
Nathan Froyd
|
a671e699c6
|
Bug 901022 - write to MOZ_TRACE_FILE when the visual event tracer is stopped; r=honzab
DONTBUILD because NPOTB
|
2013-07-25 12:21:58 -04:00 |
|
Ehsan Akhgari
|
83edc15195
|
Bug 917885 - Minimize the #includes in xpcom/base; r=bsmedberg
|
2013-09-19 14:29:31 -04:00 |
|
Ehsan Akhgari
|
5b80f8355d
|
Backed out changeset a8d6973e5743 (bug 917885) because I pushed the wrong patch
|
2013-09-19 14:27:35 -04:00 |
|
Ehsan Akhgari
|
17ae4f436e
|
Bug 917885 - Minimize the #includes in xpcom/base; r=bsmedberg
|
2013-09-19 14:12:56 -04:00 |
|
Nathan Froyd
|
7960cc996d
|
Bug 898016 - delete unused evlen variable in EventFilter::Build; r=mayhemer
DONTBUILD because NPOTB
|
2013-07-25 12:30:07 -04:00 |
|
Nathan Froyd
|
9cdf7cb227
|
Bug 898015 - delete unused gStopFlushingThread variable in VisualEventTracer.cpp; r=mayhemer
|
2013-07-25 12:27:33 -04:00 |
|
Nathan Froyd
|
69f260db94
|
Bug 891398 - don't use volatile in VisualEventTracer.cpp; r=mayhemer
DONTBUILD because NPOTB
|
2013-07-09 10:43:42 -04:00 |
|
Honza Bambas
|
27a0068bcb
|
Bug 865459 - Fix localization issue in how visual event tracer stores its timestamps, r=ehsan
|
2013-05-01 18:57:57 +02:00 |
|
Honza Bambas
|
65652b61ac
|
Bug 729182 - Implement visual event tracer, part2 - event tracer service, r=ehsan
|
2013-03-28 18:38:05 +01: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 |
|
Ms2ger
|
75ab7efb95
|
Bug 780387 - Part b: Stop using PRIntn; r=bsmedberg
|
2012-08-09 09:09:40 +02:00 |
|
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Honza Bambas
|
356f7e8cc6
|
Bug 765158 - Remove naming of main thread, conflicts with process name on Linux, r=bsmedberg
|
2012-07-11 20:20:17 +02:00 |
|
Ryan VanderMeulen
|
13fc9bf9b8
|
Backout 2838ba825479, 991404facac2, 7f6e22f10b99, 30a4e0cf7130, ad2c42efbe57, and 1f07f04ec01d (Bug 760067, Bug 767096, Bug 765158, Bug 729182) due to xpcshell orange.
|
2012-07-10 19:21:54 -04:00 |
|
Honza Bambas
|
cf912de8e4
|
Bug 765158 - Remove naming of main thread, conflicts with process name on Linux, r=bsmedberg
|
2012-07-10 23:49:18 +02:00 |
|
Honza Bambas
|
a07c8267df
|
Bug 729182 - Followup - MPL2 headers, r=Ms2ger
|
2012-06-13 17:35:31 +02:00 |
|
Honza Bambas
|
fd7f8a3858
|
Bug 729182 - Implement visual event tracer, part1 - the core, r=benjamin+ehsan
|
2012-06-12 19:06:21 +02:00 |
|