| Index: extensions/common/file_util.h
|
| diff --git a/extensions/common/file_util.h b/extensions/common/file_util.h
|
| index bc080edb546ba59b0295c487732d38eded0a40e4..831febb2499282d5ae4efd268973e09b1db4b8b0 100644
|
| --- a/extensions/common/file_util.h
|
| +++ b/extensions/common/file_util.h
|
| @@ -23,7 +23,6 @@ class FilePath;
|
|
|
| namespace extensions {
|
| class Extension;
|
| -class ExtensionSet;
|
| struct InstallWarning;
|
|
|
| // Utilities for manipulating the on-disk storage of extensions.
|
| @@ -135,12 +134,12 @@ MessageBundle::SubstitutionMap* LoadMessageBundleSubstitutionMap(
|
| const std::string& extension_id,
|
| const std::string& default_locale);
|
|
|
| -// Loads the extension message bundle substitution map, including messages from
|
| -// Shared Modules that the given extension imports. Contains at least the
|
| -// extension_id item.
|
| -MessageBundle::SubstitutionMap* LoadMessageBundleSubstitutionMapWithImports(
|
| +// Loads the extension message bundle substitution map from the specified paths.
|
| +// Contains at least the extension_id item.
|
| +MessageBundle::SubstitutionMap* LoadMessageBundleSubstitutionMapFromPaths(
|
| + const std::vector<base::FilePath>& paths,
|
| const std::string& extension_id,
|
| - const ExtensionSet& extension_set);
|
| + const std::string& default_locale);
|
|
|
| // Helper functions for getting paths for files used in content verification.
|
| base::FilePath GetVerifiedContentsPath(const base::FilePath& extension_path);
|
|
|