| Index: chrome/installer/setup/setup_singleton.h
|
| diff --git a/chrome/installer/setup/setup_singleton.h b/chrome/installer/setup/setup_singleton.h
|
| index 7dce17443dd3e43a5a6d61c537049f08e95c5a71..4ec9722ee81bc4c39488279c626d95dc7eb06e71 100644
|
| --- a/chrome/installer/setup/setup_singleton.h
|
| +++ b/chrome/installer/setup/setup_singleton.h
|
| @@ -49,7 +49,7 @@ class SetupSingleton {
|
| // SetupSingleton for the same Chrome installation. In the latter case, the
|
| // method returns true and this SetupSingleton should be released as soon as
|
| // possible to unblock the other process.
|
| - bool WaitForInterrupt(const base::TimeDelta& max_time);
|
| + bool WaitForInterrupt(const base::TimeDelta& max_time) const;
|
|
|
| private:
|
| class ScopedHoldMutex {
|
| @@ -78,7 +78,7 @@ class SetupSingleton {
|
|
|
| // An event signaled to ask the owner of |setup_mutex_| to release it as soon
|
| // as possible.
|
| - base::WaitableEvent exit_event_;
|
| + mutable base::WaitableEvent exit_event_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SetupSingleton);
|
| };
|
|
|