blob: 9c8a447707e55a06445a485186c7f26cded2d836 [file] [log] [blame]
// Copyright 2016 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_BROWSER_COMPONENT_UPDATER_COMPONENT_INSTALLER_ERRORS_H_
#define CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_INSTALLER_ERRORS_H_
#include <type_traits>
#include "components/update_client/update_client.h"
namespace component_updater {
// Define enum classes below to for specific installer errors.
// Errors specific to the Flash installer.
enum class FlashError {
MISSING_VERSION_IN_MANIFEST = 1,
HINT_FILE_RECORD_ERROR = 2,
};
} // namespace component_updater
#endif // CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_INSTALLER_ERRORS_H_