| Index: chrome/browser/extensions/webstore_install_result.h
|
| diff --git a/chrome/browser/extensions/webstore_install_result.h b/chrome/browser/extensions/webstore_install_result.h
|
| index 91f91f2a63c06c90277293e2de52fef97e292710..a9602e1ab69d49ee2cdc87c148d067688cf21f46 100644
|
| --- a/chrome/browser/extensions/webstore_install_result.h
|
| +++ b/chrome/browser/extensions/webstore_install_result.h
|
| @@ -20,6 +20,9 @@ enum Result {
|
| // The operation was aborted as the requestor is no longer alive.
|
| ABORTED,
|
|
|
| + // An installation of the same extension is in progress.
|
| + INSTALL_IN_PROGRESS,
|
| +
|
| // The installation is not permitted.
|
| NOT_PERMITTED,
|
|
|
| @@ -59,7 +62,10 @@ enum Result {
|
| LAUNCH_FEATURE_DISABLED,
|
|
|
| // The launch feature is not supported for the extension type.
|
| - LAUNCH_UNSUPPORTED_EXTENSION_TYPE
|
| + LAUNCH_UNSUPPORTED_EXTENSION_TYPE,
|
| +
|
| + // A launch of the same extension is in progress.
|
| + LAUNCH_IN_PROGRESS
|
| };
|
|
|
| } // namespace webstore_install
|
|
|