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

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

Issue 18052008: Use a direct include of time headers in ppapi/, printing/, remoting/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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) 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 "remoting/host/setup/daemon_controller.h" 5 #include "remoting/host/setup/daemon_controller.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/bind_helpers.h" 9 #include "base/bind_helpers.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/file_util.h" 11 #include "base/file_util.h"
12 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/json/json_reader.h" 13 #include "base/json/json_reader.h"
14 #include "base/json/json_writer.h" 14 #include "base/json/json_writer.h"
15 #include "base/logging.h" 15 #include "base/logging.h"
16 #include "base/strings/string16.h" 16 #include "base/strings/string16.h"
17 #include "base/strings/utf_string_conversions.h" 17 #include "base/strings/utf_string_conversions.h"
18 #include "base/threading/thread.h" 18 #include "base/threading/thread.h"
19 #include "base/time.h" 19 #include "base/time/time.h"
20 #include "base/timer.h" 20 #include "base/timer/timer.h"
21 #include "base/values.h" 21 #include "base/values.h"
22 #include "base/win/scoped_bstr.h" 22 #include "base/win/scoped_bstr.h"
23 #include "base/win/scoped_comptr.h" 23 #include "base/win/scoped_comptr.h"
24 #include "base/win/windows_version.h" 24 #include "base/win/windows_version.h"
25 #include "remoting/base/scoped_sc_handle_win.h" 25 #include "remoting/base/scoped_sc_handle_win.h"
26 #include "remoting/host/branding.h" 26 #include "remoting/host/branding.h"
27 // chromoting_lib.h contains MIDL-generated declarations. 27 // chromoting_lib.h contains MIDL-generated declarations.
28 #include "remoting/host/chromoting_lib.h" 28 #include "remoting/host/chromoting_lib.h"
29 #include "remoting/host/setup/daemon_installer_win.h" 29 #include "remoting/host/setup/daemon_installer_win.h"
30 #include "remoting/host/usage_stats_consent.h" 30 #include "remoting/host/usage_stats_consent.h"
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 done.Run(true, !!allowed, !!set_by_policy); 659 done.Run(true, !!allowed, !!set_by_policy);
660 } 660 }
661 661
662 } // namespace 662 } // namespace
663 663
664 scoped_ptr<DaemonController> remoting::DaemonController::Create() { 664 scoped_ptr<DaemonController> remoting::DaemonController::Create() {
665 return scoped_ptr<DaemonController>(new DaemonControllerWin()); 665 return scoped_ptr<DaemonController>(new DaemonControllerWin());
666 } 666 }
667 667
668 } // namespace remoting 668 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/setup/daemon_controller_mac.mm ('k') | remoting/host/setup/daemon_installer_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698