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

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

Issue 2179353004: Update Windows It2Me to allow remote users to interact with elevated windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@it2me_uiaccess
Patch Set: Removing the CHECK assertion and replacing it with LOG(ERROR) instead. Created 4 years, 3 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/it2me/it2me_host.h ('k') | remoting/host/it2me/it2me_native_messaging_host.h » ('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>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 std::unique_ptr<PolicyWatcher> policy_watcher, 61 std::unique_ptr<PolicyWatcher> policy_watcher,
62 std::unique_ptr<It2MeConfirmationDialogFactory> confirmation_dialog_factory, 62 std::unique_ptr<It2MeConfirmationDialogFactory> confirmation_dialog_factory,
63 base::WeakPtr<It2MeHost::Observer> observer, 63 base::WeakPtr<It2MeHost::Observer> observer,
64 const XmppSignalStrategy::XmppServerConfig& xmpp_server_config, 64 const XmppSignalStrategy::XmppServerConfig& xmpp_server_config,
65 const std::string& directory_bot_jid) 65 const std::string& directory_bot_jid)
66 : host_context_(std::move(host_context)), 66 : host_context_(std::move(host_context)),
67 task_runner_(host_context_->ui_task_runner()), 67 task_runner_(host_context_->ui_task_runner()),
68 observer_(observer), 68 observer_(observer),
69 xmpp_server_config_(xmpp_server_config), 69 xmpp_server_config_(xmpp_server_config),
70 directory_bot_jid_(directory_bot_jid), 70 directory_bot_jid_(directory_bot_jid),
71 state_(kDisconnected),
72 failed_login_attempts_(0),
73 policy_watcher_(std::move(policy_watcher)), 71 policy_watcher_(std::move(policy_watcher)),
74 confirmation_dialog_factory_(std::move(confirmation_dialog_factory)), 72 confirmation_dialog_factory_(std::move(confirmation_dialog_factory)) {
75 nat_traversal_enabled_(false),
76 policy_received_(false) {
77 DCHECK(task_runner_->BelongsToCurrentThread()); 73 DCHECK(task_runner_->BelongsToCurrentThread());
78 } 74 }
79 75
80 It2MeHost::~It2MeHost() { 76 It2MeHost::~It2MeHost() {
81 // Check that resources that need to be torn down on the UI thread are gone. 77 // Check that resources that need to be torn down on the UI thread are gone.
82 DCHECK(!desktop_environment_factory_.get()); 78 DCHECK(!desktop_environment_factory_.get());
83 DCHECK(!policy_watcher_.get()); 79 DCHECK(!policy_watcher_.get());
84 } 80 }
85 81
86 void It2MeHost::Connect() { 82 void It2MeHost::Connect() {
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 LOG(ERROR) << "Rejecting incoming connection from " << remote_jid 537 LOG(ERROR) << "Rejecting incoming connection from " << remote_jid
542 << ": Domain mismatch."; 538 << ": Domain mismatch.";
543 result_callback.Run(ValidationResult::ERROR_INVALID_ACCOUNT); 539 result_callback.Run(ValidationResult::ERROR_INVALID_ACCOUNT);
544 return; 540 return;
545 } 541 }
546 } 542 }
547 543
548 result_callback.Run(ValidationResult::SUCCESS); 544 result_callback.Run(ValidationResult::SUCCESS);
549 } 545 }
550 546
551 It2MeHostFactory::It2MeHostFactory() : policy_service_(nullptr) { 547 It2MeHostFactory::It2MeHostFactory() {}
552 }
553 548
554 It2MeHostFactory::~It2MeHostFactory() {} 549 It2MeHostFactory::~It2MeHostFactory() {}
555 550
556 void It2MeHostFactory::set_policy_service(
557 policy::PolicyService* policy_service) {
558 DCHECK(policy_service);
559 DCHECK(!policy_service_) << "|policy_service| can only be set once.";
560 policy_service_ = policy_service;
561 }
562
563 scoped_refptr<It2MeHost> It2MeHostFactory::CreateIt2MeHost( 551 scoped_refptr<It2MeHost> It2MeHostFactory::CreateIt2MeHost(
564 std::unique_ptr<ChromotingHostContext> context, 552 std::unique_ptr<ChromotingHostContext> context,
553 policy::PolicyService* policy_service,
565 base::WeakPtr<It2MeHost::Observer> observer, 554 base::WeakPtr<It2MeHost::Observer> observer,
566 const XmppSignalStrategy::XmppServerConfig& xmpp_server_config, 555 const XmppSignalStrategy::XmppServerConfig& xmpp_server_config,
567 const std::string& directory_bot_jid) { 556 const std::string& directory_bot_jid) {
568 DCHECK(context->ui_task_runner()->BelongsToCurrentThread()); 557 DCHECK(context->ui_task_runner()->BelongsToCurrentThread());
569 558
570 std::unique_ptr<It2MeConfirmationDialogFactory> confirmation_dialog_factory( 559 std::unique_ptr<It2MeConfirmationDialogFactory> confirmation_dialog_factory(
571 new It2MeConfirmationDialogFactory()); 560 new It2MeConfirmationDialogFactory());
572 std::unique_ptr<PolicyWatcher> policy_watcher = 561 std::unique_ptr<PolicyWatcher> policy_watcher =
573 PolicyWatcher::Create(policy_service_, context->file_task_runner()); 562 PolicyWatcher::Create(policy_service, context->file_task_runner());
574 return new It2MeHost(std::move(context), std::move(policy_watcher), 563 return new It2MeHost(std::move(context), std::move(policy_watcher),
575 std::move(confirmation_dialog_factory), observer, 564 std::move(confirmation_dialog_factory), observer,
576 xmpp_server_config, directory_bot_jid); 565 xmpp_server_config, directory_bot_jid);
577 } 566 }
578 567
579 } // namespace remoting 568 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/it2me/it2me_host.h ('k') | remoting/host/it2me/it2me_native_messaging_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698