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

Side by Side Diff: remoting/host/setup/daemon_controller_delegate_linux.cc

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 "remoting/host/setup/daemon_controller_delegate_linux.h" 5 #include "remoting/host/setup/daemon_controller_delegate_linux.h"
6 6
7 #include <unistd.h> 7 #include <unistd.h>
8 8
9 #include "base/base_paths.h" 9 #include "base/base_paths.h"
10 #include "base/basictypes.h"
11 #include "base/bind.h" 10 #include "base/bind.h"
12 #include "base/command_line.h" 11 #include "base/command_line.h"
13 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
14 #include "base/environment.h" 13 #include "base/environment.h"
15 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
16 #include "base/files/file_util.h" 15 #include "base/files/file_util.h"
17 #include "base/json/json_writer.h" 16 #include "base/json/json_writer.h"
18 #include "base/logging.h" 17 #include "base/logging.h"
19 #include "base/md5.h" 18 #include "base/md5.h"
20 #include "base/path_service.h" 19 #include "base/path_service.h"
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 return consent; 228 return consent;
230 } 229 }
231 230
232 scoped_refptr<DaemonController> DaemonController::Create() { 231 scoped_refptr<DaemonController> DaemonController::Create() {
233 scoped_ptr<DaemonController::Delegate> delegate( 232 scoped_ptr<DaemonController::Delegate> delegate(
234 new DaemonControllerDelegateLinux()); 233 new DaemonControllerDelegateLinux());
235 return new DaemonController(delegate.Pass()); 234 return new DaemonController(delegate.Pass());
236 } 235 }
237 236
238 } // namespace remoting 237 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/setup/daemon_controller_delegate_linux.h ('k') | remoting/host/setup/daemon_controller_delegate_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698