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

Side by Side Diff: chrome_frame/chrome_launcher_main.cc

Issue 344009: Setting the SVN eol style to LF on chrome frame sources (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome_frame/chrome_frame_unittest_main.cc ('k') | chrome_frame/chrome_protocol.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include <windows.h> 5 #include <windows.h>
6 6
7 #include "chrome_frame/chrome_launcher.h" 7 #include "chrome_frame/chrome_launcher.h"
8 8
9 // We want to keep this EXE tiny, so we avoid all dependencies and link to no 9 // We want to keep this EXE tiny, so we avoid all dependencies and link to no
10 // libraries, and we do not use the C runtime. 10 // libraries, and we do not use the C runtime.
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 if (proc) { 70 if (proc) {
71 exit_code = proc(); 71 exit_code = proc();
72 } else { 72 } else {
73 exit_code = ERROR_INVALID_FUNCTION; 73 exit_code = ERROR_INVALID_FUNCTION;
74 } 74 }
75 75
76 ::FreeLibrary(chrome_tab); 76 ::FreeLibrary(chrome_tab);
77 } 77 }
78 ::ExitProcess(exit_code); 78 ::ExitProcess(exit_code);
79 } 79 }
OLDNEW
« no previous file with comments | « chrome_frame/chrome_frame_unittest_main.cc ('k') | chrome_frame/chrome_protocol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698