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

Side by Side Diff: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/ProcessInfo.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 unified diff | Download patch
OLDNEW
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 NativeClientVSAddIn 5 namespace NativeClientVSAddIn
6 { 6 {
7 using System; 7 using System;
8 using System.Globalization; 8 using System.Globalization;
9 using System.Management; 9 using System.Management;
10 10
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 { 81 {
82 return new ProcessInfo( 82 return new ProcessInfo(
83 id: (uint)from["ProcessID"], 83 id: (uint)from["ProcessID"],
84 parentId: (uint)from["ParentProcessID"], 84 parentId: (uint)from["ParentProcessID"],
85 creationDate: from["CreationDate"] as string, 85 creationDate: from["CreationDate"] as string,
86 commandLine: from["CommandLine"] as string, 86 commandLine: from["CommandLine"] as string,
87 name: from["Name"] as string); 87 name: from["Name"] as string);
88 } 88 }
89 } 89 }
90 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698