chromium/extensions/browser/external_install_info.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef EXTENSIONS_BROWSER_EXTERNAL_INSTALL_INFO_H_
#define EXTENSIONS_BROWSER_EXTERNAL_INSTALL_INFO_H_

#include "base/files/file_path.h"
#include "base/version.h"
#include "extensions/common/extension_id.h"
#include "extensions/common/manifest.h"
#include "extensions/common/mojom/manifest.mojom-shared.h"
#include "url/gurl.h"

namespace extensions {

// Holds information about an external extension install from an external
// provider.
struct ExternalInstallInfo {};

struct ExternalInstallInfoFile : public ExternalInstallInfo {};

struct ExternalInstallInfoUpdateUrl : public ExternalInstallInfo {};

}  // namespace extensions
#endif  // EXTENSIONS_BROWSER_EXTERNAL_INSTALL_INFO_H_