Chromium Code Reviews| Index: chrome/common/extensions/extension.h |
| diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h |
| index 11dc237ff6ac11a0a3ecb504e53160b8c0f75f57..01a5cce271d7633f8b60334fae6c22b4efd6603c 100644 |
| --- a/chrome/common/extensions/extension.h |
| +++ b/chrome/common/extensions/extension.h |
| @@ -553,7 +553,12 @@ struct InstalledExtensionInfo { |
| // True if the extension is being updated; false if it is being installed. |
| bool is_update; |
| - InstalledExtensionInfo(const Extension* extension, bool is_update); |
| + // The name of the extension prior to this update. Will be empty if |
| + // |is_update| is false. |
| + std::string old_name; |
| + |
| + InstalledExtensionInfo(const Extension* extension, bool is_update, |
|
benwells
2013/05/28 02:14:07
Nit: one line per parameter.
Matt Giuca
2013/05/28 03:10:07
Done.
|
| + const std::string& old_name); |
| }; |
| struct UnloadedExtensionInfo { |