Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Unified Diff: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAReferenceFolderItem.cs

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAReferenceFolderItem.cs
diff --git a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAReferenceFolderItem.cs b/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAReferenceFolderItem.cs
deleted file mode 100644
index c3fc4b8b54a3809304d10efc413a33209c016315..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/third_party/Microsoft.VisualStudio.Project/Automation/OAReferenceFolderItem.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-/// Copyright (c) Microsoft Corporation. All rights reserved.
-
-using System;
-using System.Collections.Generic;
-using System.Diagnostics.CodeAnalysis;
-using System.Runtime.InteropServices;
-
-namespace Microsoft.VisualStudio.Project.Automation
-{
- /// <summary>
- /// Contains OAReferenceItem objects
- /// </summary>
- [SuppressMessage("Microsoft.Interoperability", "CA1405:ComVisibleTypeBaseTypesShouldBeComVisible")]
- [ComVisible(true), CLSCompliant(false)]
- public class OAReferenceFolderItem : OAProjectItem<ReferenceContainerNode>
- {
- #region ctors
- public OAReferenceFolderItem(OAProject project, ReferenceContainerNode node)
- : base(project, node)
- {
- }
-
- #endregion
-
- #region overridden methods
- /// <summary>
- /// Returns the project items collection of all the references defined for this project.
- /// </summary>
- public override EnvDTE.ProjectItems ProjectItems
- {
- get
- {
- return new OANavigableProjectItems(this.Project, this.GetListOfProjectItems(), this.Node);
- }
- }
-
-
- #endregion
-
- #region Helper methods
- private List<EnvDTE.ProjectItem> GetListOfProjectItems()
- {
- List<EnvDTE.ProjectItem> list = new List<EnvDTE.ProjectItem>();
- for(HierarchyNode child = this.Node.FirstChild; child != null; child = child.NextSibling)
- {
- ReferenceNode node = child as ReferenceNode;
-
- if(node != null)
- {
- list.Add(new OAReferenceItem(this.Project, node));
- }
- }
-
- return list;
- }
- #endregion
- }
-}

Powered by Google App Engine
This is Rietveld 408576698