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

Side by Side Diff: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/WebServer.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 8
9 using EnvDTE; 9 using EnvDTE;
10 using Microsoft.VisualStudio.VCProjectEngine; 10 using Microsoft.VisualStudio.VCProjectEngine;
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 /// Receives output from the web server process to display in the Visual Stu dio UI. 133 /// Receives output from the web server process to display in the Visual Stu dio UI.
134 /// </summary> 134 /// </summary>
135 /// <param name="sender">The parameter is not used.</param> 135 /// <param name="sender">The parameter is not used.</param>
136 /// <param name="e">Contains the data to display.</param> 136 /// <param name="e">Contains the data to display.</param>
137 private void WebServerMessageReceive(object sender, System.Diagnostics.DataR eceivedEventArgs e) 137 private void WebServerMessageReceive(object sender, System.Diagnostics.DataR eceivedEventArgs e)
138 { 138 {
139 webServerOutputPane_.OutputString(e.Data + "\n"); 139 webServerOutputPane_.OutputString(e.Data + "\n");
140 } 140 }
141 } 141 }
142 } 142 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698