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

Side by Side Diff: experimental/visual_studio_plugin/src/MsAd7.BaseImpl/SimpleExpression.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 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using Microsoft.VisualStudio;
6 using Microsoft.VisualStudio.Debugger.Interop;
7
8 namespace Google.MsAd7.BaseImpl
9 {
10 class SimpleExpression : IDebugExpression2
11 {
12 public SimpleExpression(DebugPropertyBase property) {
13 property_ = property;
14 }
15
16 public DebugPropertyBase Property {
17 get { return property_; }
18 }
19
20 #region Implementation of IDebugExpression2
21
22 public int EvaluateAsync(enum_EVALFLAGS dwFlags, IDebugEventCallback2 pExprC allback) {
23 throw new NotImplementedException();
24 }
25
26 public int Abort() {
27 throw new NotImplementedException();
28 }
29
30 public int EvaluateSync(enum_EVALFLAGS dwFlags, uint dwTimeout, IDebugEventC allback2 pExprCallback, out IDebugProperty2 ppResult) {
31 ppResult = property_;
32 return VSConstants.S_OK;
33 }
34
35 #endregion
36
37 private DebugPropertyBase property_;
38 }
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698