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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
ash / public / cpp / projector / projector_new_screencast_precondition.h [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_PUBLIC_CPP_PROJECTOR_PROJECTOR_NEW_SCREENCAST_PRECONDITION_H_
#define ASH_PUBLIC_CPP_PROJECTOR_PROJECTOR_NEW_SCREENCAST_PRECONDITION_H_
#include <vector>
#include "ash/public/cpp/ash_public_export.h"
namespace ash {
// The new screencast button state in the Projector SWA.
// Ensure that this enum class is synchronized with
// NewScreencastPreconditionState enum in
// //ash/webui/projector_app/resources/communication/message_types.js.
enum class ASH_PUBLIC_EXPORT NewScreencastPreconditionState {
// The new screencast button is visible but is disabled.
kDisabled = 1,
// The new screencast button is enabled and the user can create new ones now.
kEnabled = 2,
// The new screencast button is hidden.
kHidden = 3,
};
// The reason for the new screencast button state.
// Ensure that this enum class is synchronized with
// NewScreencastPreconditionReason enum in
// //ash/webui/projector_app/resources/communication/message_types.js.
enum class ASH_PUBLIC_EXPORT NewScreencastPreconditionReason {
kOnDeviceSpeechRecognitionNotSupported = 1,
kUserLocaleNotSupported = 2,
kInProjectorSession = 3,
kScreenRecordingInProgress = 4,
kSodaDownloadInProgress = 5,
kOutOfDiskSpace = 6,
kNoMic = 7,
kDriveFsUnmounted = 8, // Drive could be re-enabled from the Setting.
kDriveFsMountFailed = 9, // Drive will not be automatically retried to mount.
kOthers = 10,
// Soda installation errors.
kSodaInstallationErrorUnspecified = 0,
kSodaInstallationErrorNeedsReboot = 11,
kAudioCaptureDisabledByPolicy = 12,
// Enabled reason:
kEnabledBySoda = 13,
kEnabledByServerSideSpeechRecognition = 14,
};
// Struct used to provide the new screen cast precondition state and the reasons
// for such a state.
struct ASH_PUBLIC_EXPORT NewScreencastPrecondition {
NewScreencastPrecondition();
NewScreencastPrecondition(
NewScreencastPreconditionState new_state,
const std::vector<NewScreencastPreconditionReason>& new_state_reason);
NewScreencastPrecondition(const NewScreencastPrecondition&);
NewScreencastPrecondition& operator=(const NewScreencastPrecondition&);
~NewScreencastPrecondition();
bool operator==(const NewScreencastPrecondition& rhs) const;
NewScreencastPreconditionState state;
std::vector<NewScreencastPreconditionReason> reasons;
};
} // namespace ash
#endif // ASH_PUBLIC_CPP_PROJECTOR_PROJECTOR_NEW_SCREENCAST_PRECONDITION_H_