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

Unified Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/NaClVsx.Package_UnitTestProject/BreakpointRequestMock.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/NaClVsx.Package/NaClVsx.Package_UnitTestProject/BreakpointRequestMock.cs
diff --git a/experimental/visual_studio_plugin/src/NaClVsx.Package/NaClVsx.Package_UnitTestProject/BreakpointRequestMock.cs b/experimental/visual_studio_plugin/src/NaClVsx.Package/NaClVsx.Package_UnitTestProject/BreakpointRequestMock.cs
deleted file mode 100644
index 36b2d329ada2c1a4cbd36c070e17e7788c8fe614..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/NaClVsx.Package/NaClVsx.Package_UnitTestProject/BreakpointRequestMock.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2010 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.Runtime.InteropServices;
-using Google.MsAd7.BaseImpl;
-using Microsoft.VisualStudio;
-using Microsoft.VisualStudio.Debugger.Interop;
-
-namespace NaClVsx.Package_UnitTestProject {
- public class BreakpointRequestMock : IDebugBreakpointRequest2 {
-
- #region IDebugBreakpointRequest2 Members
-
- public int GetLocationType(enum_BP_LOCATION_TYPE[] pBpLocationType) {
- pBpLocationType[0] = enum_BP_LOCATION_TYPE.BPLT_FILE_LINE;
- return VSConstants.S_OK;
- }
-
- public int GetRequestInfo(enum_BPREQI_FIELDS dwFields,
- BP_REQUEST_INFO[] pBPRequestInfo) {
- pBPRequestInfo[0] = new BP_REQUEST_INFO {
- bpLocation = {
- bpLocationType = (uint) enum_BP_LOCATION_TYPE.BPLT_CODE_FILE_LINE,
- unionmember2 = Marshal.GetIUnknownForObject(
- new DocumentPosition("C:\\test\\path", 123))
- }
- };
-
- return VSConstants.S_OK;
- }
-
- #endregion
- }
-}

Powered by Google App Engine
This is Rietveld 408576698