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

Unified Diff: experimental/visual_studio_plugin/src/MsAd7.BaseImpl/BoundBreakpoint.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/BoundBreakpoint.cs
diff --git a/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/BoundBreakpoint.cs b/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/BoundBreakpoint.cs
deleted file mode 100644
index 6b7a521ac04176aaede7d4bca367ab288b783cff..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/BoundBreakpoint.cs
+++ /dev/null
@@ -1,79 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using System.Text;
-using Microsoft.VisualStudio;
-using Microsoft.VisualStudio.Debugger.Interop;
-
-namespace Google.MsAd7.BaseImpl
-{
- public class BoundBreakpoint : IDebugBoundBreakpoint2
- {
- public BoundBreakpoint(PendingBreakpoint parent, UInt64 address) {
- parent_ = parent;
- address_ = address;
- }
-
- public PendingBreakpoint Parent {
- get { return parent_; }
- }
-
- public ulong Address {
- get { return address_; }
- }
-
- #region Implementation of IDebugBoundBreakpoint2
-
- public int GetPendingBreakpoint(out IDebugPendingBreakpoint2 ppPendingBreakpoint) {
- Debug.WriteLine("BoundBreakpoint.GetPendingBreakpoint");
- ppPendingBreakpoint = parent_;
- return VSConstants.S_OK;
- }
-
- public int GetState(enum_BP_STATE[] pState) {
- Debug.WriteLine("BoundBreakpoint.GetState");
- throw new NotImplementedException();
- }
-
- public int GetHitCount(out uint pdwHitCount) {
- Debug.WriteLine("BoundBreakpoint.GetHitCount");
- throw new NotImplementedException();
- }
-
- public int GetBreakpointResolution(out IDebugBreakpointResolution2 ppBPResolution) {
- Debug.WriteLine("BoundBreakpoint.GetBreakpointResolution");
- throw new NotImplementedException();
- }
-
- public int Enable(int fEnable) {
- Debug.WriteLine("BoundBreakpoint.Enable");
- throw new NotImplementedException();
- }
-
- public int SetHitCount(uint dwHitCount) {
- Debug.WriteLine("BoundBreakpoint.SetHitCount");
- throw new NotImplementedException();
- }
-
- public int SetCondition(BP_CONDITION bpCondition) {
- Debug.WriteLine("BoundBreakpoint.SetCondition");
- throw new NotImplementedException();
- }
-
- public int SetPassCount(BP_PASSCOUNT bpPassCount) {
- Debug.WriteLine("BoundBreakpoint.SetPassCount");
- throw new NotImplementedException();
- }
-
- public int Delete() {
- Debug.WriteLine("BoundBreakpoint.Delete");
- throw new NotImplementedException();
- }
-
- #endregion
-
- private readonly PendingBreakpoint parent_ = null;
- private ulong address_;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698