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

Side by Side Diff: experimental/visual_studio_plugin/src/NaClVsx.Package/NaClVsx.Package_UnitTestProject/DebugPort2Mock.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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Native Client Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #region
6
7 using System;
8 using Google.MsAd7.BaseImpl.TestUtils;
9 using Microsoft.VisualStudio.Debugger.Interop;
10
11 #endregion
12
13 namespace NaClVsx.Package_UnitTestProject {
14 class DebugPort2Mock : MockBase, IDebugPort2 {
15 #region IDebugPort2 Members
16
17 public int GetPortName(out string pbstrName) {
18 throw new NotImplementedException();
19 }
20
21 public int GetPortId(out Guid pguidPort) {
22 throw new NotImplementedException();
23 }
24
25 public int GetPortRequest(out IDebugPortRequest2 ppRequest) {
26 throw new NotImplementedException();
27 }
28
29 public int GetPortSupplier(out IDebugPortSupplier2 ppSupplier) {
30 throw new NotImplementedException();
31 }
32
33 public int GetProcess(AD_PROCESS_ID ProcessId, out IDebugProcess2 ppProcess) {
34 throw new NotImplementedException();
35 }
36
37 public int EnumProcesses(out IEnumDebugProcesses2 ppEnum) {
38 throw new NotImplementedException();
39 }
40
41 #endregion
42 }
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698