// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_UPDATER_REGISTRATION_DATA_H_ #define CHROME_UPDATER_REGISTRATION_DATA_H_ #include <optional> #include <string> #include "base/files/file_path.h" #include "base/version.h" #include "chrome/updater/constants.h" namespace updater { inline constexpr int kRegistrationSuccess = …; inline constexpr int kRegistrationError = …; struct RegistrationRequest { … }; } // namespace updater #endif // CHROME_UPDATER_REGISTRATION_DATA_H_