| Index: ui/events/platform/platform_event_source.cc
|
| diff --git a/ui/events/platform/platform_event_source.cc b/ui/events/platform/platform_event_source.cc
|
| index e576664a566faad38c4b5f4886152b32a669ea05..bf957f07476f590f917e017280e3a0b8cfcd4880 100644
|
| --- a/ui/events/platform/platform_event_source.cc
|
| +++ b/ui/events/platform/platform_event_source.cc
|
| @@ -76,7 +76,7 @@ uint32_t PlatformEventSource::DispatchEvent(PlatformEvent platform_event) {
|
|
|
| if ((action & POST_DISPATCH_PERFORM_DEFAULT) &&
|
| dispatchers_.might_have_observers()) {
|
| - ObserverList<PlatformEventDispatcher>::Iterator iter(dispatchers_);
|
| + ObserverList<PlatformEventDispatcher>::Iterator iter(&dispatchers_);
|
| while (PlatformEventDispatcher* dispatcher = iter.GetNext()) {
|
| if (dispatcher->CanDispatchEvent(platform_event))
|
| action = dispatcher->DispatchEvent(platform_event);
|
|
|