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

Unified Diff: experimental/visual_studio_plugin/src/MsAd7.BaseImpl/MsAd7.BaseImpl_UnitTestProject/SimpleDebuggerMock.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/SimpleDebuggerMock.cs
diff --git a/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/MsAd7.BaseImpl_UnitTestProject/SimpleDebuggerMock.cs b/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/MsAd7.BaseImpl_UnitTestProject/SimpleDebuggerMock.cs
deleted file mode 100644
index 7fc096a165eaa19075eaae7f1cff6fda78c0008c..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/MsAd7.BaseImpl_UnitTestProject/SimpleDebuggerMock.cs
+++ /dev/null
@@ -1,89 +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 System.Collections.Generic;
-using Google.MsAd7.BaseImpl.Interfaces;
-
-#endregion
-
-namespace MsAd7.BaseImpl_UnitTestProject {
- public class SimpleDebuggerMock : ISimpleDebugger {
- #region ISimpleDebugger Members
-
- public ISimpleSymbolProvider Symbols {
- get { return symbols_; }
- }
-
- public string Architecture {
- get { throw new NotImplementedException(); }
- }
-
- public ulong BaseAddress {
- get { throw new NotImplementedException(); }
- }
-
- public event SimpleDebuggerTypes.EventHandler Stopped;
- public event SimpleDebuggerTypes.EventHandler StepFinished;
- public event SimpleDebuggerTypes.EventHandler Continuing;
- public event SimpleDebuggerTypes.MessageHandler Output;
- public event SimpleDebuggerTypes.ModuleLoadHandler ModuleLoaded;
-
- public void Break() {
- throw new NotImplementedException();
- }
-
- public void Step(uint id) {
- throw new NotImplementedException();
- }
-
- public void Continue() {
- throw new NotImplementedException();
- }
-
- public void AddBreakpoint(ulong addr) {
- throw new NotImplementedException();
- }
-
- public void RemoveBreakpoint(ulong addr) {
- throw new NotImplementedException();
- }
-
- public IEnumerable<uint> GetThreads() {
- throw new NotImplementedException();
- }
-
- public object GetRegisters(uint id) {
- throw new NotImplementedException();
- }
-
- public void GetMemory(ulong sourceAddress,
- Array destination,
- uint countInBytes) {
- throw new NotImplementedException();
- }
-
- public void SetMemory(ulong destAddress, Array src, uint countInBytes) {
- throw new NotImplementedException();
- }
-
- public ulong GetU64(ulong address) {
- throw new NotImplementedException();
- }
-
- public uint GetU32(ulong address) {
- throw new NotImplementedException();
- }
-
- #endregion
-
- #region Private Implementation
-
- private readonly SymbolProviderMock symbols_ = new SymbolProviderMock();
-
- #endregion
- }
-}

Powered by Google App Engine
This is Rietveld 408576698