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

Side by Side Diff: chrome/tools/crash_service/crash_service.cc

Issue 3014015: Remove <iostream> where possible. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix chrome frame compile Created 10 years, 5 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
« no previous file with comments | « chrome/test/v8_unit_test.cc ('k') | courgette/disassembler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 "chrome/tools/crash_service/crash_service.h" 5 #include "chrome/tools/crash_service/crash_service.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 8
9 #include <iostream>
10 #include <fstream> 9 #include <fstream>
11 #include <map> 10 #include <map>
12 #include <sddl.h> 11 #include <sddl.h>
13 12
14 #include "base/command_line.h" 13 #include "base/command_line.h"
15 #include "base/file_util.h" 14 #include "base/file_util.h"
16 #include "base/logging.h" 15 #include "base/logging.h"
17 #include "base/path_service.h" 16 #include "base/path_service.h"
18 #include "base/win_util.h" 17 #include "base/win_util.h"
19 #include "breakpad/src/client/windows/crash_generation/crash_generation_server.h " 18 #include "breakpad/src/client/windows/crash_generation/crash_generation_server.h "
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 &sec_desc, NULL)) { 472 &sec_desc, NULL)) {
474 if (::GetSecurityDescriptorSacl(sec_desc, &sacl_present, &sacl, 473 if (::GetSecurityDescriptorSacl(sec_desc, &sacl_present, &sacl,
475 &sacl_defaulted)) { 474 &sacl_defaulted)) {
476 return sec_desc; 475 return sec_desc;
477 } 476 }
478 } 477 }
479 478
480 return NULL; 479 return NULL;
481 } 480 }
482 481
OLDNEW
« no previous file with comments | « chrome/test/v8_unit_test.cc ('k') | courgette/disassembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698