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

Unified Diff: experimental/visual_studio_plugin/src/MsAd7.BaseImpl/Interfaces/IBreakpointInfo.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/Interfaces/IBreakpointInfo.cs
diff --git a/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/Interfaces/IBreakpointInfo.cs b/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/Interfaces/IBreakpointInfo.cs
deleted file mode 100644
index a7e1324462def799446394adeca0546187318cdf..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/MsAd7.BaseImpl/Interfaces/IBreakpointInfo.cs
+++ /dev/null
@@ -1,22 +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.
-using System.Collections.Generic;
-using Microsoft.VisualStudio.Debugger.Interop;
-
-namespace Google.MsAd7.BaseImpl.Interfaces {
- public interface IBreakpointInfo {
- // This interface exists to implement a subset of the functionality that will be
- // asked of the SymbolProvider. Specifically information related to breakpoints.
-
- // Populates the |ppErrorEnum| with any warnings and errors that would occur if
- // the debugger were to attempt to bind a breakpoint at |pos|.
- int GetBindErrors(DocumentPosition pos,
- out IEnumDebugErrorBreakpoints2 ppErrorEnum);
-
- // Returns the addresses where the debugger could break at or near |pos|.
- int GetBindAddresses(DocumentPosition pos,
- out IEnumerable<ulong> addresses,
- out IEnumDebugErrorBreakpoints2 ppErrorEnum);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698