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

Unified Diff: visual_studio/NativeClientVSAddIn/UnitTests/MockProcessSearcher.cs

Issue 10908249: Remove windows line ending from repo files (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: fix copyright headers 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: 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;
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698