| Index: visual_studio/NativeClientVSAddIn/UnitTests/MockProcessSearcher.cs
|
| diff --git a/visual_studio/NativeClientVSAddIn/UnitTests/MockProcessSearcher.cs b/visual_studio/NativeClientVSAddIn/UnitTests/MockProcessSearcher.cs
|
| index 5cb982748a29d8e7bb4290cca6cc68d311dde9f2..3ca346dcd7a73459d22f8eb6c707362206220411 100644
|
| --- a/visual_studio/NativeClientVSAddIn/UnitTests/MockProcessSearcher.cs
|
| +++ b/visual_studio/NativeClientVSAddIn/UnitTests/MockProcessSearcher.cs
|
| @@ -1,36 +1,36 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -namespace UnitTests
|
| -{
|
| - using System.Collections.Generic;
|
| -
|
| - /// <summary>
|
| - /// A fake process searcher that allows the list of 'processes' on the system to be faked.
|
| - /// </summary>
|
| - public class MockProcessSearcher : NativeClientVSAddIn.ProcessSearcher
|
| - {
|
| - /// <summary>
|
| - /// Constructs the fake process searcher.
|
| - /// </summary>
|
| - public MockProcessSearcher()
|
| - {
|
| - this.ProcessList = new List<NativeClientVSAddIn.ProcessInfo>();
|
| - }
|
| -
|
| - /// <summary>
|
| - /// Gets or sets the fake list of processes this MockProcessSearcher knows about.
|
| - /// </summary>
|
| - public List<NativeClientVSAddIn.ProcessInfo> ProcessList { get; set; }
|
| -
|
| - /// <summary>
|
| - /// This method substitutes the fake process list for the list of real system processes.
|
| - /// </summary>
|
| - /// <returns>Fake list of processes</returns>
|
| - protected override List<NativeClientVSAddIn.ProcessInfo> GetSystemProcesses()
|
| - {
|
| - return this.ProcessList;
|
| - }
|
| - }
|
| -}
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +namespace UnitTests
|
| +{
|
| + using System.Collections.Generic;
|
| +
|
| + /// <summary>
|
| + /// A fake process searcher that allows the list of 'processes' on the system to be faked.
|
| + /// </summary>
|
| + public class MockProcessSearcher : NativeClientVSAddIn.ProcessSearcher
|
| + {
|
| + /// <summary>
|
| + /// Constructs the fake process searcher.
|
| + /// </summary>
|
| + public MockProcessSearcher()
|
| + {
|
| + this.ProcessList = new List<NativeClientVSAddIn.ProcessInfo>();
|
| + }
|
| +
|
| + /// <summary>
|
| + /// Gets or sets the fake list of processes this MockProcessSearcher knows about.
|
| + /// </summary>
|
| + public List<NativeClientVSAddIn.ProcessInfo> ProcessList { get; set; }
|
| +
|
| + /// <summary>
|
| + /// This method substitutes the fake process list for the list of real system processes.
|
| + /// </summary>
|
| + /// <returns>Fake list of processes</returns>
|
| + protected override List<NativeClientVSAddIn.ProcessInfo> GetSystemProcesses()
|
| + {
|
| + return this.ProcessList;
|
| + }
|
| + }
|
| +}
|
|
|