chromium/chrome/browser/extensions/extension_migrator.h

// Copyright 2015 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_BROWSER_EXTENSIONS_EXTENSION_MIGRATOR_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_MIGRATOR_H_

#include <string>

#include "base/memory/raw_ptr.h"
#include "chrome/browser/extensions/external_loader.h"

class Profile;

namespace extensions {

// An ExternalLoader that provides the new extension for the following
// scenarios:
//   - Existing profile that has the old.
//   - Existing profile that already has the new.
// Note that the old extension is not removed.
class ExtensionMigrator : public ExternalLoader {};

}  // namespace extensions

#endif  // CHROME_BROWSER_EXTENSIONS_EXTENSION_MIGRATOR_H_