Merge mozilla-central to inbound

This commit is contained in:
Carsten "Tomcat" Book
2016-11-16 14:53:15 +01:00
678 changed files with 22863 additions and 35496 deletions

View File

@@ -157,9 +157,9 @@ public:
explicit nsAsyncInstantiateEvent(nsObjectLoadingContent* aContent)
: mContent(aContent) {}
~nsAsyncInstantiateEvent() {}
~nsAsyncInstantiateEvent() override = default;
NS_IMETHOD Run();
NS_IMETHOD Run() override;
private:
nsCOMPtr<nsIObjectLoadingContent> mContent;
@@ -190,9 +190,9 @@ public:
explicit CheckPluginStopEvent(nsObjectLoadingContent* aContent)
: mContent(aContent) {}
~CheckPluginStopEvent() {}
~CheckPluginStopEvent() override = default;
NS_IMETHOD Run();
NS_IMETHOD Run() override;
private:
nsCOMPtr<nsIObjectLoadingContent> mContent;
@@ -288,9 +288,9 @@ public:
MOZ_ASSERT(aTarget && aDocument);
}
~nsSimplePluginEvent() {}
~nsSimplePluginEvent() override = default;
NS_IMETHOD Run();
NS_IMETHOD Run() override;
private:
nsCOMPtr<nsISupports> mTarget;
@@ -336,9 +336,9 @@ public:
mSubmittedCrashReport(submittedCrashReport)
{}
~nsPluginCrashedEvent() {}
~nsPluginCrashedEvent() override = default;
NS_IMETHOD Run();
NS_IMETHOD Run() override;
};
NS_IMETHODIMP
@@ -393,7 +393,7 @@ public:
NS_IMETHOD Notify(nsITimer* timer) override;
protected:
virtual ~nsStopPluginRunnable() {}
~nsStopPluginRunnable() override = default;
private:
nsCOMPtr<nsITimer> mTimer;
@@ -1377,7 +1377,7 @@ public:
{}
protected:
~ObjectInterfaceRequestorShim() {}
~ObjectInterfaceRequestorShim() = default;
nsCOMPtr<nsIObjectLoadingContent> mContent;
};
@@ -3879,10 +3879,6 @@ nsObjectLoadingContent::SetupProtoChainRunner::SetupProtoChainRunner(
{
}
nsObjectLoadingContent::SetupProtoChainRunner::~SetupProtoChainRunner()
{
}
NS_IMETHODIMP
nsObjectLoadingContent::SetupProtoChainRunner::Run()
{