[sgen] Fix logging of major heap size with concurrent sweep
[mono.git] / mcs / tools / corcompare / mono-api-html / AssemblyComparer.cs
index e083c270850df8f96da78d13da5e07fed71c5394..adbd862eb923bcba7c67f3a792b30862d6c78234 100644 (file)
@@ -25,6 +25,7 @@
 //
 
 using System;
+using System.Collections.Generic;
 using System.Xml.Linq;
 
 namespace Xamarin.ApiDiff {
@@ -56,12 +57,12 @@ namespace Xamarin.ApiDiff {
                        State.Assembly = current.GetAttribute ("name");
                }
 
-               public override void Added (XElement target)
+               public override void Added (XElement target, bool wasParentAdded)
                {
                        // one assembly per xml file
                }
 
-               public override void Modified (XElement source, XElement target)
+               public override void Modified (XElement source, XElement target, ApiChanges diff)
                {
                        SourceAssembly = source.GetAttribute ("name");
                        TargetAssembly = target.GetAttribute ("name");