diff --git a/mozilla/content/base/src/nsStyleSet.cpp b/mozilla/content/base/src/nsStyleSet.cpp index b7733614341..a98a484d9b3 100644 --- a/mozilla/content/base/src/nsStyleSet.cpp +++ b/mozilla/content/base/src/nsStyleSet.cpp @@ -200,7 +200,7 @@ protected: nsIStyleFrameConstruction* mFrameConstructor; - MOZ_TIMER_DECLARE(mStyleResolutionWatch); + MOZ_TIMER_DECLARE(mStyleResolutionWatch) }; StyleSetImpl::StyleSetImpl() diff --git a/mozilla/content/html/document/src/nsHTMLContentSink.cpp b/mozilla/content/html/document/src/nsHTMLContentSink.cpp index ec86d4a22a7..d3e8a5d4aec 100644 --- a/mozilla/content/html/document/src/nsHTMLContentSink.cpp +++ b/mozilla/content/html/document/src/nsHTMLContentSink.cpp @@ -285,7 +285,7 @@ public: void ForceReflow(); #endif - MOZ_TIMER_DECLARE(mWatch); // Measures content model creation time for current document + MOZ_TIMER_DECLARE(mWatch) // Measures content model creation time for current document }; class SinkContext { diff --git a/mozilla/docshell/base/nsWebShell.cpp b/mozilla/docshell/base/nsWebShell.cpp index 7893cca9f28..81698794474 100644 --- a/mozilla/docshell/base/nsWebShell.cpp +++ b/mozilla/docshell/base/nsWebShell.cpp @@ -492,7 +492,7 @@ protected: // if there is no mWindow, this will keep track of the bounds --dwc0001 nsRect mBounds; - MOZ_TIMER_DECLARE(mTotalTime); + MOZ_TIMER_DECLARE(mTotalTime) #ifdef DETECT_WEBSHELL_LEAKS private: diff --git a/mozilla/htmlparser/src/nsParser.h b/mozilla/htmlparser/src/nsParser.h index 09e6e57b7bb..3cabb15f211 100644 --- a/mozilla/htmlparser/src/nsParser.h +++ b/mozilla/htmlparser/src/nsParser.h @@ -384,9 +384,9 @@ protected: CObserverService mObserverService; public: - MOZ_TIMER_DECLARE(mParseTime); - MOZ_TIMER_DECLARE(mDTDTime); - MOZ_TIMER_DECLARE(mTokenizeTime); + MOZ_TIMER_DECLARE(mParseTime) + MOZ_TIMER_DECLARE(mDTDTime) + MOZ_TIMER_DECLARE(mTokenizeTime) }; #endif diff --git a/mozilla/layout/base/nsPresShell.cpp b/mozilla/layout/base/nsPresShell.cpp index 48f87f30590..e224d810bf4 100644 --- a/mozilla/layout/base/nsPresShell.cpp +++ b/mozilla/layout/base/nsPresShell.cpp @@ -379,8 +379,8 @@ protected: PRBool mPendingReflowEvent; nsCOMPtr mEventQueue; - MOZ_TIMER_DECLARE(mReflowWatch); // Used for measuring time spent in reflow - MOZ_TIMER_DECLARE(mFrameCreationWatch); // Used for measuring time spent in frame creation + MOZ_TIMER_DECLARE(mReflowWatch) // Used for measuring time spent in reflow + MOZ_TIMER_DECLARE(mFrameCreationWatch) // Used for measuring time spent in frame creation #ifdef DEBUG_nisheeth PRInt32 mReflows; diff --git a/mozilla/layout/base/src/nsStyleSet.cpp b/mozilla/layout/base/src/nsStyleSet.cpp index b7733614341..a98a484d9b3 100644 --- a/mozilla/layout/base/src/nsStyleSet.cpp +++ b/mozilla/layout/base/src/nsStyleSet.cpp @@ -200,7 +200,7 @@ protected: nsIStyleFrameConstruction* mFrameConstructor; - MOZ_TIMER_DECLARE(mStyleResolutionWatch); + MOZ_TIMER_DECLARE(mStyleResolutionWatch) }; StyleSetImpl::StyleSetImpl() diff --git a/mozilla/layout/html/base/src/nsPresShell.cpp b/mozilla/layout/html/base/src/nsPresShell.cpp index 48f87f30590..e224d810bf4 100644 --- a/mozilla/layout/html/base/src/nsPresShell.cpp +++ b/mozilla/layout/html/base/src/nsPresShell.cpp @@ -379,8 +379,8 @@ protected: PRBool mPendingReflowEvent; nsCOMPtr mEventQueue; - MOZ_TIMER_DECLARE(mReflowWatch); // Used for measuring time spent in reflow - MOZ_TIMER_DECLARE(mFrameCreationWatch); // Used for measuring time spent in frame creation + MOZ_TIMER_DECLARE(mReflowWatch) // Used for measuring time spent in reflow + MOZ_TIMER_DECLARE(mFrameCreationWatch) // Used for measuring time spent in frame creation #ifdef DEBUG_nisheeth PRInt32 mReflows; diff --git a/mozilla/layout/html/document/src/nsHTMLContentSink.cpp b/mozilla/layout/html/document/src/nsHTMLContentSink.cpp index ec86d4a22a7..d3e8a5d4aec 100644 --- a/mozilla/layout/html/document/src/nsHTMLContentSink.cpp +++ b/mozilla/layout/html/document/src/nsHTMLContentSink.cpp @@ -285,7 +285,7 @@ public: void ForceReflow(); #endif - MOZ_TIMER_DECLARE(mWatch); // Measures content model creation time for current document + MOZ_TIMER_DECLARE(mWatch) // Measures content model creation time for current document }; class SinkContext { diff --git a/mozilla/layout/style/nsStyleSet.cpp b/mozilla/layout/style/nsStyleSet.cpp index b7733614341..a98a484d9b3 100644 --- a/mozilla/layout/style/nsStyleSet.cpp +++ b/mozilla/layout/style/nsStyleSet.cpp @@ -200,7 +200,7 @@ protected: nsIStyleFrameConstruction* mFrameConstructor; - MOZ_TIMER_DECLARE(mStyleResolutionWatch); + MOZ_TIMER_DECLARE(mStyleResolutionWatch) }; StyleSetImpl::StyleSetImpl() diff --git a/mozilla/parser/htmlparser/src/nsParser.h b/mozilla/parser/htmlparser/src/nsParser.h index 09e6e57b7bb..3cabb15f211 100644 --- a/mozilla/parser/htmlparser/src/nsParser.h +++ b/mozilla/parser/htmlparser/src/nsParser.h @@ -384,9 +384,9 @@ protected: CObserverService mObserverService; public: - MOZ_TIMER_DECLARE(mParseTime); - MOZ_TIMER_DECLARE(mDTDTime); - MOZ_TIMER_DECLARE(mTokenizeTime); + MOZ_TIMER_DECLARE(mParseTime) + MOZ_TIMER_DECLARE(mDTDTime) + MOZ_TIMER_DECLARE(mTokenizeTime) }; #endif diff --git a/mozilla/webshell/src/nsWebShell.cpp b/mozilla/webshell/src/nsWebShell.cpp index 7893cca9f28..81698794474 100644 --- a/mozilla/webshell/src/nsWebShell.cpp +++ b/mozilla/webshell/src/nsWebShell.cpp @@ -492,7 +492,7 @@ protected: // if there is no mWindow, this will keep track of the bounds --dwc0001 nsRect mBounds; - MOZ_TIMER_DECLARE(mTotalTime); + MOZ_TIMER_DECLARE(mTotalTime) #ifdef DETECT_WEBSHELL_LEAKS private: