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

Side by Side Diff: chrome/browser/mac/relauncher.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 "chrome/browser/mac/relauncher.h" 5 #include "chrome/browser/mac/relauncher.h"
6 6
7 #include <ApplicationServices/ApplicationServices.h> 7 #include <ApplicationServices/ApplicationServices.h>
8 #include <AvailabilityMacros.h> 8 #include <AvailabilityMacros.h>
9 #include <crt_externs.h> 9 #include <crt_externs.h>
10 #include <dlfcn.h> 10 #include <dlfcn.h>
11 #include <stddef.h>
11 #include <string.h> 12 #include <string.h>
12 #include <sys/event.h> 13 #include <sys/event.h>
13 #include <sys/time.h> 14 #include <sys/time.h>
14 #include <sys/types.h> 15 #include <sys/types.h>
15 #include <unistd.h> 16 #include <unistd.h>
16 17
17 #include <string> 18 #include <string>
18 #include <vector> 19 #include <vector>
19 20
20 #include "base/basictypes.h"
21 #include "base/files/file_util.h" 21 #include "base/files/file_util.h"
22 #include "base/files/scoped_file.h" 22 #include "base/files/scoped_file.h"
23 #include "base/logging.h" 23 #include "base/logging.h"
24 #include "base/mac/mac_logging.h" 24 #include "base/mac/mac_logging.h"
25 #include "base/mac/mac_util.h" 25 #include "base/mac/mac_util.h"
26 #include "base/mac/scoped_cftyperef.h" 26 #include "base/mac/scoped_cftyperef.h"
27 #include "base/path_service.h" 27 #include "base/path_service.h"
28 #include "base/posix/eintr_wrapper.h" 28 #include "base/posix/eintr_wrapper.h"
29 #include "base/process/launch.h" 29 #include "base/process/launch.h"
30 #include "base/strings/stringprintf.h" 30 #include "base/strings/stringprintf.h"
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 if (!dmg_bsd_device_name.empty()) { 372 if (!dmg_bsd_device_name.empty()) {
373 EjectAndTrashDiskImage(dmg_bsd_device_name); 373 EjectAndTrashDiskImage(dmg_bsd_device_name);
374 } 374 }
375 375
376 return 0; 376 return 0;
377 } 377 }
378 378
379 } // namespace internal 379 } // namespace internal
380 380
381 } // namespace mac_relauncher 381 } // namespace mac_relauncher
OLDNEW
« no previous file with comments | « chrome/browser/mac/mac_startup_profiler.h ('k') | chrome/browser/manifest/manifest_icon_downloader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698