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

Unified Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/DebugSupport/NaClDebugProcess.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/NaClDebugProcess.cs
diff --git a/experimental/visual_studio_plugin/src/NaClVsx.Package/DebugSupport/NaClDebugProcess.cs b/experimental/visual_studio_plugin/src/NaClVsx.Package/DebugSupport/NaClDebugProcess.cs
deleted file mode 100644
index bc2040d77e78c3afe8852355fc599dac30cc52f1..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/NaClVsx.Package/DebugSupport/NaClDebugProcess.cs
+++ /dev/null
@@ -1,45 +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.Collections.Generic;
-using Google.MsAd7.BaseImpl;
-using Microsoft.VisualStudio.Debugger.Interop;
-
-namespace Google.NaClVsx.DebugSupport {
- public class NaClDebugProcess : DebugProcess {
- public NaClDebugProcess(IDebugPort2 port, string connectionString, int pid, string imagePath)
- : base(port, pid, imagePath) {
- connectionString_ = connectionString;
- }
-
- public NaClPort NaClPort {
- get { return (DebugSupport.NaClPort) this.Port;}
- }
-
- #region Overrides of DebugProcess
-
- public override enum_PROCESS_INFO_FLAGS GetProcessStatus() {
- return enum_PROCESS_INFO_FLAGS.PIFLAG_PROCESS_RUNNING;
- }
-
- protected override ICollection<IDebugProgram2> GetPrograms() {
- Refresh();
- return programs_;
- }
-
- #endregion
-
- void Refresh()
- {
- if (programs_.Count > 0) return;
- programs_.Add(new ProgramNode(this));
- }
-
-
- List<IDebugProgram2> programs_ = new List<IDebugProgram2>();
- private string connectionString_;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698