blob: 5b9de2cf7f0f3a6e149c583dab318d3c6101187e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright 2015 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_EXTENSIONS_EXTENSION_MIGRATOR_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_MIGRATOR_H_
#include <string>
#include "base/macros.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 {
public:
ExtensionMigrator(Profile* profile,
const std::string& old_id,
const std::string& new_id);
protected:
~ExtensionMigrator() override;
// ExternalLoader:
void StartLoading() override;
private:
bool IsAppPresent(const std::string& app_id);
Profile* profile_;
const std::string old_id_;
const std::string new_id_;
DISALLOW_COPY_AND_ASSIGN(ExtensionMigrator);
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MIGRATOR_H_
|