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

Side by Side Diff: components/crash/tools/crash_service.cc

Issue 485893007: Rename components/breakpad to components/crash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + iOS tests Created 6 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 | Annotate | Revision Log
« no previous file with comments | « components/crash/tools/crash_service.h ('k') | components/crash/tools/dmp2minidump.py » ('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) 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 #include "components/breakpad/tools/crash_service.h" 5 #include "components/crash/tools/crash_service.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 8
9 #include <sddl.h> 9 #include <sddl.h>
10 #include <fstream> 10 #include <fstream>
11 #include <map> 11 #include <map>
12 12
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/file_util.h" 14 #include "base/file_util.h"
15 #include "base/logging.h" 15 #include "base/logging.h"
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 if (::GetSecurityDescriptorSacl(sec_desc, &sacl_present, &sacl, 479 if (::GetSecurityDescriptorSacl(sec_desc, &sacl_present, &sacl,
480 &sacl_defaulted)) { 480 &sacl_defaulted)) {
481 return sec_desc; 481 return sec_desc;
482 } 482 }
483 } 483 }
484 484
485 return NULL; 485 return NULL;
486 } 486 }
487 487
488 } // namespace breakpad 488 } // namespace breakpad
OLDNEW
« no previous file with comments | « components/crash/tools/crash_service.h ('k') | components/crash/tools/dmp2minidump.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698