1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
ash / webui / annotator / annotator_client_impl.cc [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/webui/annotator/annotator_client_impl.h"
#include "ash/annotator/annotator_controller.h"
#include "ash/public/cpp/annotator/annotator_tool.h"
#include "ash/shell.h"
#include "ash/webui/annotator/annotations_overlay_view_impl.h"
#include "ash/webui/annotator/untrusted_annotator_page_handler_impl.h"
#include "chromeos/ash/components/browser_context_helper/browser_context_helper.h"
#include "components/user_manager/user_manager.h"
AnnotatorClientImpl::AnnotatorClientImpl(
ash::AnnotatorControllerBase* annotator_controller)
: annotator_controller_(annotator_controller) {
annotator_controller_->SetToolClient(this);
}
AnnotatorClientImpl::AnnotatorClientImpl()
: AnnotatorClientImpl(ash::Shell::Get()->annotator_controller()) {}
AnnotatorClientImpl::~AnnotatorClientImpl() {
annotator_controller_->SetToolClient(nullptr);
}
void AnnotatorClientImpl::SetAnnotatorPageHandler(
ash::UntrustedAnnotatorPageHandlerImpl* handler) {
annotator_handler_ = handler;
}
void AnnotatorClientImpl::ResetAnnotatorPageHandler(
ash::UntrustedAnnotatorPageHandlerImpl* handler) {
if (annotator_handler_ == handler) {
annotator_handler_ = nullptr;
}
}
void AnnotatorClientImpl::SetTool(const ash::AnnotatorTool& tool) {
DCHECK(annotator_handler_);
annotator_handler_->SetTool(tool);
}
void AnnotatorClientImpl::Clear() {
DCHECK(annotator_handler_);
annotator_handler_->Clear();
}
std::unique_ptr<ash::AnnotationsOverlayView>
AnnotatorClientImpl::CreateAnnotationsOverlayView() const {
auto* active_user = user_manager::UserManager::Get()->GetActiveUser();
return std::make_unique<AnnotationsOverlayViewImpl>(
active_user ? ash::BrowserContextHelper::Get()->GetBrowserContextByUser(
active_user)
: nullptr);
}