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

Side by Side Diff: remoting/host/setup/daemon_controller_delegate_mac.mm

Issue 1547473005: Switch to standard integer types in remoting/host/. (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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 <CoreFoundation/CoreFoundation.h> 5 #include <CoreFoundation/CoreFoundation.h>
6 6
7 #include "remoting/host/setup/daemon_controller_delegate_mac.h" 7 #include "remoting/host/setup/daemon_controller_delegate_mac.h"
8 8
9 #include <launch.h> 9 #include <launch.h>
10 #include <stdio.h> 10 #include <stdio.h>
11 #include <sys/types.h> 11 #include <sys/types.h>
12 12
13 #include "base/basictypes.h"
14 #include "base/bind.h" 13 #include "base/bind.h"
15 #include "base/callback_helpers.h" 14 #include "base/callback_helpers.h"
16 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.h"
17 #include "base/files/file_path.h" 16 #include "base/files/file_path.h"
18 #include "base/files/file_util.h" 17 #include "base/files/file_util.h"
19 #include "base/logging.h" 18 #include "base/logging.h"
20 #include "base/mac/foundation_util.h" 19 #include "base/mac/foundation_util.h"
21 #include "base/mac/launchd.h" 20 #include "base/mac/launchd.h"
22 #include "base/mac/mac_logging.h" 21 #include "base/mac/mac_logging.h"
23 #include "base/mac/mac_util.h" 22 #include "base/mac/mac_util.h"
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 self->PreferencePaneCallbackDelegate(name); 248 self->PreferencePaneCallbackDelegate(name);
250 } 249 }
251 250
252 scoped_refptr<DaemonController> DaemonController::Create() { 251 scoped_refptr<DaemonController> DaemonController::Create() {
253 scoped_ptr<DaemonController::Delegate> delegate( 252 scoped_ptr<DaemonController::Delegate> delegate(
254 new DaemonControllerDelegateMac()); 253 new DaemonControllerDelegateMac());
255 return new DaemonController(delegate.Pass()); 254 return new DaemonController(delegate.Pass());
256 } 255 }
257 256
258 } // namespace remoting 257 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/setup/daemon_controller_delegate_mac.h ('k') | remoting/host/setup/daemon_controller_delegate_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698