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

Unified Diff: experimental/visual_studio_plugin/src/MsAd7.BaseImpl/MsAd7.BaseImpl_UnitTestProject/DebugThread2Mock.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/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
- }
-}

Powered by Google App Engine
This is Rietveld 408576698