Remove AidlImport

AidlImport doesn't need to be an AidlNode.

Fixes: 203135225
Test: atest aidl_unittests aidl_integration_test
Change-Id: I2fad5e5d3e7c5c785ccde1a8279228aba4aabb03
diff --git a/parser.h b/parser.h
index be4b7c6..e497912 100644
--- a/parser.h
+++ b/parser.h
@@ -92,7 +92,7 @@
   const std::string& Package() const { return package_; }
 
   void MakeDocument(const AidlLocation& location, const Comments& comments,
-                    std::vector<std::unique_ptr<AidlImport>> imports,
+                    std::set<std::string> imports,
                     std::vector<std::unique_ptr<AidlDefinedType>> defined_types);
 
  private: