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

Side by Side Diff: remoting/host/it2me/it2me_host.cc

Issue 2779373003: Moving service urls to base. (Closed)
Patch Set: Updating moved file c dates. Created 3 years, 8 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
« no previous file with comments | « remoting/host/BUILD.gn ('k') | remoting/host/it2me/it2me_native_messaging_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/it2me/it2me_host.h" 5 #include "remoting/host/it2me/it2me_host.h"
6 6
7 #include <cstdint> 7 #include <cstdint>
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
11 11
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/callback_helpers.h" 13 #include "base/callback_helpers.h"
14 #include "base/memory/ptr_util.h" 14 #include "base/memory/ptr_util.h"
15 #include "base/strings/string_util.h" 15 #include "base/strings/string_util.h"
16 #include "base/threading/platform_thread.h" 16 #include "base/threading/platform_thread.h"
17 #include "components/policy/policy_constants.h" 17 #include "components/policy/policy_constants.h"
18 #include "net/url_request/url_request_context_getter.h" 18 #include "net/url_request/url_request_context_getter.h"
19 #include "remoting/base/auto_thread.h" 19 #include "remoting/base/auto_thread.h"
20 #include "remoting/base/chromium_url_request.h" 20 #include "remoting/base/chromium_url_request.h"
21 #include "remoting/base/logging.h" 21 #include "remoting/base/logging.h"
22 #include "remoting/base/rsa_key_pair.h" 22 #include "remoting/base/rsa_key_pair.h"
23 #include "remoting/base/service_urls.h"
23 #include "remoting/host/chromoting_host.h" 24 #include "remoting/host/chromoting_host.h"
24 #include "remoting/host/chromoting_host_context.h" 25 #include "remoting/host/chromoting_host_context.h"
25 #include "remoting/host/host_event_logger.h" 26 #include "remoting/host/host_event_logger.h"
26 #include "remoting/host/host_secret.h" 27 #include "remoting/host/host_secret.h"
27 #include "remoting/host/host_status_logger.h" 28 #include "remoting/host/host_status_logger.h"
28 #include "remoting/host/it2me/it2me_confirmation_dialog.h" 29 #include "remoting/host/it2me/it2me_confirmation_dialog.h"
29 #include "remoting/host/it2me_desktop_environment.h" 30 #include "remoting/host/it2me_desktop_environment.h"
30 #include "remoting/host/policy_watcher.h" 31 #include "remoting/host/policy_watcher.h"
31 #include "remoting/host/register_support_host_request.h" 32 #include "remoting/host/register_support_host_request.h"
32 #include "remoting/host/service_urls.h"
33 #include "remoting/protocol/auth_util.h" 33 #include "remoting/protocol/auth_util.h"
34 #include "remoting/protocol/chromium_port_allocator_factory.h" 34 #include "remoting/protocol/chromium_port_allocator_factory.h"
35 #include "remoting/protocol/ice_transport.h" 35 #include "remoting/protocol/ice_transport.h"
36 #include "remoting/protocol/it2me_host_authenticator_factory.h" 36 #include "remoting/protocol/it2me_host_authenticator_factory.h"
37 #include "remoting/protocol/jingle_session_manager.h" 37 #include "remoting/protocol/jingle_session_manager.h"
38 #include "remoting/protocol/network_settings.h" 38 #include "remoting/protocol/network_settings.h"
39 #include "remoting/protocol/transport_context.h" 39 #include "remoting/protocol/transport_context.h"
40 #include "remoting/protocol/validating_authenticator.h" 40 #include "remoting/protocol/validating_authenticator.h"
41 #include "remoting/signaling/jid_util.h" 41 #include "remoting/signaling/jid_util.h"
42 #include "remoting/signaling/server_log_entry.h" 42 #include "remoting/signaling/server_log_entry.h"
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 579
580 std::unique_ptr<PolicyWatcher> policy_watcher = 580 std::unique_ptr<PolicyWatcher> policy_watcher =
581 PolicyWatcher::Create(policy_service, context->file_task_runner()); 581 PolicyWatcher::Create(policy_service, context->file_task_runner());
582 return new It2MeHost(std::move(context), std::move(policy_watcher), 582 return new It2MeHost(std::move(context), std::move(policy_watcher),
583 base::MakeUnique<It2MeConfirmationDialogFactory>(), 583 base::MakeUnique<It2MeConfirmationDialogFactory>(),
584 observer, std::move(signal_strategy), username, 584 observer, std::move(signal_strategy), username,
585 directory_bot_jid); 585 directory_bot_jid);
586 } 586 }
587 587
588 } // namespace remoting 588 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/BUILD.gn ('k') | remoting/host/it2me/it2me_native_messaging_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698