| Index: chrome/browser/chromeos/settings/cros_settings.h
|
| diff --git a/chrome/browser/chromeos/settings/cros_settings.h b/chrome/browser/chromeos/settings/cros_settings.h
|
| index 403a5a6e9cde2ac7e1e9d916a95d10334dfe01ac..77f8194cc76575c30ec73d0a1a05a8dba131ad02 100644
|
| --- a/chrome/browser/chromeos/settings/cros_settings.h
|
| +++ b/chrome/browser/chromeos/settings/cros_settings.h
|
| @@ -94,7 +94,7 @@ class CrosSettings : public base::NonThreadSafe {
|
| bool RemoveSettingsProvider(CrosSettingsProvider* provider);
|
|
|
| // Add an observer Callback for changes for the given |path|.
|
| - typedef base::CallbackRegistry<void>::Subscription ObserverSubscription;
|
| + typedef base::CallbackRegistry<void(void)>::Subscription ObserverSubscription;
|
| scoped_ptr<ObserverSubscription> AddSettingsObserver(
|
| const std::string& path,
|
| const base::Closure& callback);
|
| @@ -113,7 +113,7 @@ class CrosSettings : public base::NonThreadSafe {
|
|
|
| // A map from settings names to a list of observers. Observers get fired in
|
| // the order they are added.
|
| - typedef base::hash_map<std::string, base::CallbackRegistry<void>*>
|
| + typedef base::hash_map<std::string, base::CallbackRegistry<void(void)>*>
|
| SettingsObserverMap;
|
| SettingsObserverMap settings_observers_;
|
|
|
|
|