summaryrefslogtreecommitdiff
path: root/docshell
diff options
context:
space:
mode:
authorKetmar Dark <ketmar@ketmar.no-ip.org>2015-07-27 10:17:03 +0300
committerPale Moon <git-repo@palemoon.org>2015-07-28 18:22:14 +0200
commit97845561d5f8bece2a54501d6474a586ce563a58 (patch)
tree4b5286c83ec67a30eca2f0c2609cc5ee1d8f98ba /docshell
parentccade1a63a882d771c6f68d94008aedab16ba8e4 (diff)
downloadpalemoon-gre-97845561d5f8bece2a54501d6474a586ce563a58.tar.gz
no more "visual event tracer"
Diffstat (limited to 'docshell')
-rw-r--r--docshell/base/nsDocShell.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/docshell/base/nsDocShell.cpp b/docshell/base/nsDocShell.cpp
index 58cb688aa..55a2b8836 100644
--- a/docshell/base/nsDocShell.cpp
+++ b/docshell/base/nsDocShell.cpp
@@ -19,7 +19,6 @@
#include "mozilla/StartupTimeline.h"
#include "mozilla/unused.h"
#include "mozilla/Util.h"
-#include "mozilla/VisualEventTracer.h"
#ifdef MOZ_LOGGING
// so we can get logging even in release builds (but only for some things)
@@ -6560,8 +6559,6 @@ nsDocShell::EndPageLoad(nsIWebProgress * aProgress,
{
if(!aChannel)
return NS_ERROR_NULL_POINTER;
-
- MOZ_EVENT_TRACER_DONE(this, "docshell::pageload");
nsCOMPtr<nsIURI> url;
nsresult rv = aChannel->GetURI(getter_AddRefs(url));
@@ -9314,13 +9311,6 @@ nsDocShell::DoURILoad(nsIURI * aURI,
bool aForceAllowCookies,
const nsAString &aSrcdoc)
{
-#ifdef MOZ_VISUAL_EVENT_TRACER
- nsAutoCString urlSpec;
- aURI->GetAsciiSpec(urlSpec);
- MOZ_EVENT_TRACER_NAME_OBJECT(this, urlSpec.BeginReading());
- MOZ_EVENT_TRACER_EXEC(this, "docshell::pageload");
-#endif
-
nsresult rv;
nsCOMPtr<nsIURILoader> uriLoader;