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

Unified Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/DebugSupport/NaClPortSupplier.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/DebugSupport/NaClPortSupplier.cs
diff --git a/experimental/visual_studio_plugin/src/NaClVsx.Package/DebugSupport/NaClPortSupplier.cs b/experimental/visual_studio_plugin/src/NaClVsx.Package/DebugSupport/NaClPortSupplier.cs
deleted file mode 100644
index 6d6a7fe45cb0ed55b7249d0450ce6ef5159f022a..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/NaClVsx.Package/DebugSupport/NaClPortSupplier.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using System.Runtime.InteropServices;
-using System.Text;
-using Google.MsAd7.BaseImpl;
-using Microsoft.VisualStudio.Debugger.Interop;
-
-namespace Google.NaClVsx.DebugSupport
-{
- [Guid(kClsId)]
- [ComVisible(true)]
- [ClassInterface(ClassInterfaceType.None)]
- sealed class NaClPortSupplier : PortSupplier
- {
- public const string kClsId =
- "19F7B834-0503-42cd-AEB7-93B69071FA05";
-
-
- #region Overrides of PortSupplier
-
- public NaClPortSupplier()
- : base("Native Client (NaCl)",
- "Connects to Native Client executables (.nexe) via the gdb remote serial protocol.") {
- IDebugPort2 p;
- AddPort(new PortRequest("127.0.0.1:4014"), out p);
- }
-
- protected override Port CreatePort(IDebugPortRequest2 rq) {
- string portname;
- rq.GetPortName(out portname);
- return new NaClPort(this, rq, portname);
- }
-
- #endregion
- }
-}

Powered by Google App Engine
This is Rietveld 408576698