| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 namespace UnitTests | 5 namespace UnitTests |
| 6 { | 6 { |
| 7 using System.Collections.Generic; | 7 using System.Collections.Generic; |
| 8 | 8 |
| 9 /// <summary> | 9 /// <summary> |
| 10 /// A fake process searcher that allows the list of 'processes' on the system
to be faked. | 10 /// A fake process searcher that allows the list of 'processes' on the system
to be faked. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 /// <summary> | 27 /// <summary> |
| 28 /// This method substitutes the fake process list for the list of real syste
m processes. | 28 /// This method substitutes the fake process list for the list of real syste
m processes. |
| 29 /// </summary> | 29 /// </summary> |
| 30 /// <returns>Fake list of processes</returns> | 30 /// <returns>Fake list of processes</returns> |
| 31 protected override List<NativeClientVSAddIn.ProcessInfo> GetSystemProcesses(
) | 31 protected override List<NativeClientVSAddIn.ProcessInfo> GetSystemProcesses(
) |
| 32 { | 32 { |
| 33 return this.ProcessList; | 33 return this.ProcessList; |
| 34 } | 34 } |
| 35 } | 35 } |
| 36 } | 36 } |
| OLD | NEW |