Index: experimental/visual_studio_plugin/src/MsAd7.BaseImpl/MsAd7.BaseImpl_UnitTestProject/DebugThread2Mock.cs |
diff --git a/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/MsAd7.BaseImpl_UnitTestProject/DebugThread2Mock.cs b/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/MsAd7.BaseImpl_UnitTestProject/DebugThread2Mock.cs |
deleted file mode 100644 |
index 0e6d6f6449c6b76986f231ef57d907205ac57ceb..0000000000000000000000000000000000000000 |
--- a/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/MsAd7.BaseImpl_UnitTestProject/DebugThread2Mock.cs |
+++ /dev/null |
@@ -1,68 +0,0 @@ |
-// Copyright (c) 2011 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. |
- |
-#region |
- |
-using System; |
-using Microsoft.VisualStudio.Debugger.Interop; |
- |
-#endregion |
- |
-namespace MsAd7.BaseImpl_UnitTestProject { |
- class DebugThread2Mock : IDebugThread2 { |
- #region IDebugThread2 Members |
- |
- public int EnumFrameInfo(enum_FRAMEINFO_FLAGS dwFieldSpec, |
- uint nRadix, |
- out IEnumDebugFrameInfo2 ppEnum) { |
- throw new NotImplementedException(); |
- } |
- |
- public int GetName(out string pbstrName) { |
- throw new NotImplementedException(); |
- } |
- |
- public int SetThreadName(string pszName) { |
- throw new NotImplementedException(); |
- } |
- |
- public int GetProgram(out IDebugProgram2 ppProgram) { |
- throw new NotImplementedException(); |
- } |
- |
- public int CanSetNextStatement(IDebugStackFrame2 pStackFrame, |
- IDebugCodeContext2 pCodeContext) { |
- throw new NotImplementedException(); |
- } |
- |
- public int SetNextStatement(IDebugStackFrame2 pStackFrame, |
- IDebugCodeContext2 pCodeContext) { |
- throw new NotImplementedException(); |
- } |
- |
- public int GetThreadId(out uint pdwThreadId) { |
- throw new NotImplementedException(); |
- } |
- |
- public int Suspend(out uint pdwSuspendCount) { |
- throw new NotImplementedException(); |
- } |
- |
- public int Resume(out uint pdwSuspendCount) { |
- throw new NotImplementedException(); |
- } |
- |
- public int GetThreadProperties(enum_THREADPROPERTY_FIELDS dwFields, |
- THREADPROPERTIES[] ptp) { |
- throw new NotImplementedException(); |
- } |
- |
- public int GetLogicalThread(IDebugStackFrame2 pStackFrame, |
- out IDebugLogicalThread2 ppLogicalThread) { |
- throw new NotImplementedException(); |
- } |
- |
- #endregion |
- } |
-} |