Ehsan Akhgari
|
8c296bbcd4
|
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 |
|
David Zbarsky
|
fe804d085c
|
[Bug 780428] Don't include nsIFrame.h in places where it's not necessary r=roc
|
2012-08-05 23:00:56 -04:00 |
|
Ehsan Akhgari
|
cc4eb213b4
|
Backout changeset e794d5f88e0c (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:14:47 -04:00 |
|
Matt Woodrow
|
1d473e382a
|
Bug 539356 - Part 19 - Only repaint retained layers after the previous repainted has been drawn to the window. r=roc
|
2012-06-30 15:06:13 +12:00 |
|
Gervase Markham
|
87620f5676
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Markus Stange
|
d0ed306317
|
Bug 598482 part 22 - Bump nsIViewManager UUID. r=roc
|
2011-12-23 22:52:26 -05:00 |
|
Markus Stange
|
eb399a7302
|
Bug 598482 part 20 - Rename Update to Invalidate; view updates are now always asynchronous. r=roc
|
2011-12-23 22:52:25 -05:00 |
|
Boris Zbarsky
|
b02086b4af
|
Bug 598482 part 16. When flushing layout, also flush out widget geometry changes. r=roc
|
2011-12-23 22:52:23 -05:00 |
|
Markus Stange
|
464140fc29
|
Bug 598482 part 15 - Rename view update batches to refresh disable batches and only use them in the two places that can enter reflow (where synchronous painting is permitted). r=roc
|
2011-12-23 22:52:23 -05:00 |
|
Markus Stange
|
aa95f5d61c
|
Bug 598482 part 11 - Set up a connection between the view manager and the refresh driver. r=roc
|
2011-12-23 22:52:22 -05:00 |
|
Markus Stange
|
d13d62c3a3
|
Bug 598482 part 7 - Remove NS_VMREFRESH_* flags. NS_VMREFRESH_NO_SYNC is now the unchangable default. r=roc
|
2011-12-23 22:52:22 -05:00 |
|
Markus Stange
|
1a8fc22417
|
Bug 598482 part 2 - Remove synchronous painting APIs from nsIViewManager. r=roc
|
2011-12-23 22:52:21 -05:00 |
|
Phil Ringnalda
|
3cce1527f8
|
Back out 1ac4cb2e7c32 to c631f9c3e9a9 (bug 598482) for Android reftest failures
|
2011-12-23 22:21:58 -08:00 |
|
Markus Stange
|
05ef51c398
|
Bug 598482 part 22 - Bump nsIViewManager UUID. r=roc
|
2011-12-23 22:52:26 -05:00 |
|
Markus Stange
|
dfe85f1f6f
|
Bug 598482 part 20 - Rename Update to Invalidate; view updates are now always asynchronous. r=roc
|
2011-12-23 22:52:25 -05:00 |
|
Boris Zbarsky
|
80ff66daf0
|
Bug 598482 part 16. When flushing layout, also flush out widget geometry changes. r=roc
|
2011-12-23 22:52:23 -05:00 |
|
Markus Stange
|
d377851c88
|
Bug 598482 part 15 - Rename view update batches to refresh disable batches and only use them in the two places that can enter reflow (where synchronous painting is permitted). r=roc
|
2011-12-23 22:52:23 -05:00 |
|
Markus Stange
|
4b8f403413
|
Bug 598482 part 11 - Set up a connection between the view manager and the refresh driver. r=roc
|
2011-12-23 22:52:22 -05:00 |
|
Markus Stange
|
352b17f6aa
|
Bug 598482 part 7 - Remove NS_VMREFRESH_* flags. NS_VMREFRESH_NO_SYNC is now the unchangable default. r=roc
|
2011-12-23 22:52:22 -05:00 |
|
Markus Stange
|
4ca59bb5ee
|
Bug 598482 part 2 - Remove synchronous painting APIs from nsIViewManager. r=roc
|
2011-12-23 22:52:21 -05:00 |
|
Neil Deakin
|
afa7e2eaae
|
Bug 703260, part 3, remove nsIViewObserver, r=mats
|
2011-11-21 12:53:20 -05:00 |
|
Timothy Nikkel
|
3715293ac6
|
Bug 695245. Misc view related code cleanup. Mostly dead code removal. r=roc
|
2011-10-19 14:10:13 -05:00 |
|
Ehsan Akhgari
|
2a602a5685
|
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
|
d8e503c38b
|
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 |
|
Timothy Nikkel
|
d652b2c826
|
Bug 638430. Fix finding the display root of a view when a floating view is inside a floating view. r=roc
|
2011-05-29 22:15:00 -05:00 |
|
Timothy Nikkel
|
88a07ae5c6
|
Bug 655267. Move the synth mouse move handling from the view manager to the pres shell. r=roc
I also snuck in some minor cleanup.
|
2011-05-11 10:49:16 -05:00 |
|
Zack Weinberg
|
dd67585463
|
Bug 651017, part 5: mechanical changes.
--HG--
extra : rebase_source : 8bbdf48488736b51d05e734e2e9316c1460cfed5
|
2011-04-16 18:22:44 -07:00 |
|
Zack Weinberg
|
f5a0843ac7
|
Bug 266236 part 9: Move nsBoundingMetrics to its own header and prune inclusions of nsRenderingContext.h.
--HG--
rename : gfx/src/nsThebesRenderingContext.cpp => gfx/src/nsRenderingContext.cpp
rename : gfx/src/nsThebesRenderingContext.h => gfx/src/nsRenderingContext.h
extra : rebase_source : 92660748436f03475e011184e2828f1db0ad63e0
|
2011-04-07 18:04:40 -07:00 |
|
Jan Küchler
|
5ef6bf26cf
|
Bug 266236 part 3: Mechanical rename of nsIRenderingContext and nsThebesRenderingContext to nsRenderingContext. Mechanical substitution of nsRefPtr<nsRenderingContext> for nsCOMPtr<nsRenderingContext>.
--HG--
rename : gfx/src/nsThebesRenderingContext.cpp => gfx/src/nsRenderingContext.cpp
extra : rebase_source : 34884bfcafd885feaf73300bc7246cd192062a48
|
2011-04-07 18:04:40 -07:00 |
|
Ms2ger
|
3aac8958f3
|
Bug 637864 - Give nsIViewManager::GetRootView a sane signature; r=bz
|
2011-03-29 22:24:54 -04:00 |
|
Ehsan Akhgari
|
d7ede6881c
|
Bug 611798 - Do not pretent that we need the presshell to exist in order to turn off update view batching when the editor operations finish, because we don't; r=bzbarsky a=blocking-final+
This patch should fix all of the possible cases where a browser window stops painting when the presshell dies in the middle of an editor operation.
|
2010-12-10 17:14:26 -05:00 |
|
Timothy Nikkel
|
cc09403fac
|
Bug 587542. If painting is suppressed in the presshell, drop invalidations that come through the view subsystem as well as through the usual frame invalidation path. r=roc
|
2010-08-18 20:16:58 -05:00 |
|
Boris Zbarsky
|
e8a9de31ab
|
Bug 575336 part 1. Make sure to update the size of the current prescontext on style flush, so that media queries do the right thing. r=roc
|
2010-08-05 14:39:39 -04:00 |
|
Robert O'Callahan
|
00f2a44ddc
|
Bug 572900. Part 1: Remove view cruft that's not needed now that scrolling is layer-based. r=tnikkel
|
2010-07-16 09:08:06 +12:00 |
|
Timothy Nikkel
|
92355591c8
|
Bug 545593. Remove nsViewManager::Enable/DisableRefresh. r=roc
|
2010-02-18 13:23:23 -06:00 |
|
Timothy Nikkel
|
53fe3ff52d
|
Backed out changeset 93c7b23284b8 (Bug 545593) for causing Md oth failures on linux.
|
2010-02-12 16:46:04 -06:00 |
|
Timothy Nikkel
|
73241cb6bc
|
Bug 545593. Remove nsViewManager::Enable/DisableRefresh. r=roc
--HG--
extra : rebase_source : 963053b0f3d5712308b53c665dddcedae08a2b21
|
2010-02-11 18:14:59 -06:00 |
|
Robert O'Callahan
|
b5f5b11c36
|
Bug 526394. Part 33: Remove nsScrollPortView etc. r=mats
|
2010-01-12 10:45:20 +13:00 |
|
Robert O'Callahan
|
04a613495c
|
Bug 526394. Part 31: Move scroll implementation into nsGfxScrollFrame. r=mats
|
2009-10-08 16:01:15 +13:00 |
|
Robert O'Callahan
|
519c0fd842
|
Bug 526394. Part 21: Remove nsIViewManager RootScrollableView APIs, and move GetRectVisibility to nsIPresShell. r=mats
|
2009-09-09 17:40:02 +12:00 |
|
Neil Deakin
|
02a7469b05
|
Bug 503943, add mouse capturing api to elements, remove capturing from views, r=roc,sr=smaug
|
2009-09-13 09:13:16 -04:00 |
|
Neil Deakin
|
a5bfe49767
|
Bug 503943, back out mouse capture patch, CLOSED TREE
|
2009-09-10 12:11:41 -04:00 |
|
Neil Deakin
|
2ca788ce33
|
Bug 503943, add mouse capturing api to elements, remove capturing from views, r=roc,sr=smaug
|
2009-09-10 08:51:36 -04:00 |
|
Robert O'Callahan
|
a4fec52cd4
|
Bug 506615. XUL decks should not have wididgets. r=dbaron
|
2009-07-30 14:54:42 +12:00 |
|
Robert O'Callahan
|
20c4a2900f
|
Bug 352093. Part 13: Remove nsIViewManager::GetWidget since no-one should be using it. r=bzbarsky
|
2009-07-22 12:45:11 +12:00 |
|
Robert O'Callahan
|
d6fc5e3bfb
|
Bug 352093. Part 2: Create nsIViewManager::GetRootWidget.
|
2009-07-22 12:45:03 +12:00 |
|
Robert O'Callahan
|
b4be2a9744
|
Bug 352093. Part 1: Add view parameter to nsViewManager::DispatchEvent so we can target view system events to widget-less documents. r=bzbarsky
|
2009-07-22 12:44:59 +12:00 |
|
Zack Weinberg
|
558a5863e2
|
Bug 478079 - Kill nsViewManager::DefaultRefresh, and move the cached canvas background to the pres shell; r+sr=roc
|
2009-02-23 02:10:23 +01:00 |
|
Jeremy Lea
|
1800930122
|
Bug 448830. Make nsIntRect/nsIntMargin/nsIntSize/nsIntPoint different types from nsRect/nsMargin/nsSize/nsPoint different types for better compile-type unit checking. r+sr=roc
--HG--
extra : rebase_source : a331a9e49fbc5931f546919281fcca7f008ab615
|
2009-01-15 16:27:09 +13:00 |
|
L. David Baron
|
fa9533f8cf
|
Flush view manager's delayed resize when flushing layout. (Bug 453896) r+sr=bzbarsky
|
2008-09-09 06:43:10 -07:00 |
|