Index: chrome/common/extensions/extension_file_util.h |
diff --git a/chrome/common/extensions/extension_file_util.h b/chrome/common/extensions/extension_file_util.h |
index 7139600ccd305a30328000aa4869b91260330d94..4a94687772565e6731b0b928f56ec8b3e42c6462 100644 |
--- a/chrome/common/extensions/extension_file_util.h |
+++ b/chrome/common/extensions/extension_file_util.h |
@@ -10,7 +10,6 @@ |
#include "base/files/file_path.h" |
#include "base/memory/ref_counted.h" |
-#include "chrome/common/extensions/message_bundle.h" |
#include "extensions/common/manifest.h" |
class ExtensionIconSet; |
@@ -22,7 +21,6 @@ class FilePath; |
namespace extensions { |
class Extension; |
-class MessageBundle; |
struct InstallWarning; |
} |
@@ -94,20 +92,6 @@ std::set<base::FilePath> GetBrowserImagePaths( |
std::vector<base::FilePath> FindPrivateKeyFiles( |
const base::FilePath& extension_dir); |
-// Loads extension message catalogs and returns message bundle. |
-// Returns NULL on error, or if extension is not localized. |
-extensions::MessageBundle* LoadMessageBundle( |
- const base::FilePath& extension_path, |
- const std::string& default_locale, |
- std::string* error); |
- |
-// Loads the extension message bundle substitution map. Contains at least |
-// extension_id item. |
-extensions::MessageBundle::SubstitutionMap* LoadMessageBundleSubstitutionMap( |
- const base::FilePath& extension_path, |
- const std::string& extension_id, |
- const std::string& default_locale); |
- |
// We need to reserve the namespace of entries that start with "_" for future |
// use by Chrome. |
// If any files or directories are found using "_" prefix and are not on |