#include "chrome/updater/update_service.h"
#include <ostream>
#include "base/version.h"
namespace updater {
UpdateService::UpdateState::UpdateState() = default;
UpdateService::UpdateState::UpdateState(const UpdateState&) = default;
UpdateService::UpdateState& UpdateService::UpdateState::operator=(
const UpdateState&) = default;
UpdateService::UpdateState::UpdateState(UpdateState&&) = default;
UpdateService::UpdateState& UpdateService::UpdateState::operator=(
UpdateState&&) = default;
UpdateService::UpdateState::~UpdateState() = default;
UpdateService::AppState::AppState() = default;
UpdateService::AppState::AppState(const AppState&) = default;
UpdateService::AppState& UpdateService::AppState::operator=(const AppState&) =
default;
UpdateService::AppState::AppState(UpdateService::AppState&&) = default;
UpdateService::AppState& UpdateService::AppState::operator=(AppState&&) =
default;
UpdateService::AppState::~AppState() = default;
std::ostream& operator<<(std::ostream& os,
const UpdateService::UpdateState& update_state) { … }
bool operator==(const UpdateService::UpdateState& lhs,
const UpdateService::UpdateState& rhs) { … }
}