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

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

Issue 486843004: Change base/file_utils.h includes to base/files/file_utils.h in chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad merge Created 6 years, 4 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include <stdlib.h> 6 #include <stdlib.h>
7 #include <tchar.h> 7 #include <tchar.h>
8 8
9 #include "base/at_exit.h" 9 #include "base/at_exit.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/file_util.h" 11 #include "base/files/file_util.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/path_service.h" 13 #include "base/path_service.h"
14 #include "chrome/common/chrome_constants.h" 14 #include "chrome/common/chrome_constants.h"
15 #include "chrome/common/chrome_paths.h" 15 #include "chrome/common/chrome_paths.h"
16 #include "components/breakpad/tools/crash_service.h" 16 #include "components/breakpad/tools/crash_service.h"
17 17
18 namespace { 18 namespace {
19 19
20 const wchar_t kStandardLogFile[] = L"operation_log.txt"; 20 const wchar_t kStandardLogFile[] = L"operation_log.txt";
21 21
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 return 1; 70 return 1;
71 71
72 VLOG(1) << "ready to process crash requests"; 72 VLOG(1) << "ready to process crash requests";
73 73
74 // Enter the message loop. 74 // Enter the message loop.
75 int retv = crash_service.ProcessingLoop(); 75 int retv = crash_service.ProcessingLoop();
76 // Time to exit. 76 // Time to exit.
77 VLOG(1) << "session end. return code is " << retv; 77 VLOG(1) << "session end. return code is " << retv;
78 return retv; 78 return retv;
79 } 79 }
OLDNEW
« no previous file with comments | « chrome/tools/convert_dict/dic_reader.cc ('k') | chrome/tools/mac_helpers/infoplist_strings_util.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698