| Index: chrome/browser/component_updater/crx_update_item.h
|
| diff --git a/chrome/browser/component_updater/crx_update_item.h b/chrome/browser/component_updater/crx_update_item.h
|
| index cb7ac62246afd0b76c7883236acea41cdc72dbb4..274eed581472d973b4986ffbb7ce78c24810b5c8 100644
|
| --- a/chrome/browser/component_updater/crx_update_item.h
|
| +++ b/chrome/browser/component_updater/crx_update_item.h
|
| @@ -55,7 +55,7 @@ class CUResourceThrottle;
|
| // | error V |
|
| // +------------------------------------------ kUpdating ->----+ success
|
| //
|
| -struct CrxUpdateItem {
|
| +struct CrxUpdateItem : public base::SupportsWeakPtr<CrxUpdateItem> {
|
| enum Status {
|
| kNew,
|
| kChecking,
|
| @@ -125,6 +125,9 @@ struct CrxUpdateItem {
|
| private:
|
| const std::string& id_;
|
| };
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(CrxUpdateItem);
|
| };
|
|
|
| } // namespace component_updater
|
|
|