blob: bbda4d060176e4843c2d59e6c37e0c550dcc09a9 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_UPDATER_UPDATER_SCOPE_H_
#define CHROME_UPDATER_UPDATER_SCOPE_H_
#include <ostream>
namespace updater {
// Scope of the service invocation.
enum class UpdaterScope {
// The updater is running in the logged in user's scope.
kUser = 1,
// The updater is running in the system's scope.
kSystem = 2,
};
inline std::ostream& operator<<(std::ostream& os, UpdaterScope scope) {
switch (scope) {
case UpdaterScope::kUser:
return os << "User";
case UpdaterScope::kSystem:
return os << "System";
}
}
// Returns the scope of the updater, which is either per-system or per-user.
// The updater scope is determined from command line arguments of the process,
// the presence and content of the --tag argument, and the integrity level
// of the process, where applicable.
UpdaterScope GetUpdaterScope();
} // namespace updater
#endif // CHROME_UPDATER_UPDATER_SCOPE_H_