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

Unified Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/ProjectSupport/NaClProjectFactory.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/src/NaClVsx.Package/ProjectSupport/NaClProjectFactory.cs
diff --git a/experimental/visual_studio_plugin/src/NaClVsx.Package/ProjectSupport/NaClProjectFactory.cs b/experimental/visual_studio_plugin/src/NaClVsx.Package/ProjectSupport/NaClProjectFactory.cs
deleted file mode 100644
index 78c7a430011fedaad64191fac2e93a7ec20fb1dd..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/NaClVsx.Package/ProjectSupport/NaClProjectFactory.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2009 The Native Client Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can
-// be found in the LICENSE file.
-using System;
-using System.Diagnostics;
-using System.Runtime.InteropServices;
-using Microsoft.VisualStudio;
-using Microsoft.VisualStudio.Shell;
-using Microsoft.VisualStudio.Shell.Interop;
-using IOleServiceProvider = Microsoft.VisualStudio.OLE.Interop.IServiceProvider;
-using Microsoft.VisualStudio.Project;
-
-namespace Google.NaClVsx.ProjectSupport {
- [Guid(NaClGuids.kGuidNaClVsxProjectFactoryString)]
- class NaClProjectFactory : ProjectFactory {
-
- public NaClProjectFactory(Package package) : base(package) {
- Trace.WriteLine("Entered NaClProjectFactory constructor");
- }
-
- #region Implementation of IVsProjectFactory
-
- public int CanCreateProject(string pszFilename,
- uint grfCreateFlags,
- out int pfCanCreate) {
- pfCanCreate = 1;
- return VSConstants.S_OK;
- // TO DO: Under what circumstances should we
- // throw a NotImplementedException();
- }
-
- protected override ProjectNode CreateProject() {
- ProjectNode proj = new NaClProjectNode();
- proj.SetSite((IOleServiceProvider)((IServiceProvider)this.Package).GetService(typeof(IOleServiceProvider)));
- return proj;
- }
-
- public int SetSite(IServiceProvider psp) {
- throw new NotImplementedException();
- }
-
- public int Close() {
- throw new NotImplementedException();
- }
-
- #endregion
- }
-}

Powered by Google App Engine
This is Rietveld 408576698