| Index: third_party/WebKit/Source/core/frame/PlatformEventDispatcher.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/PlatformEventDispatcher.cpp b/third_party/WebKit/Source/core/frame/PlatformEventDispatcher.cpp
|
| index 76d1c9bb45fbe7165dbc5fc3d6b88b87f345f834..bd83333d55d53ab103bf21a1c6533bdfc6fb6516 100644
|
| --- a/third_party/WebKit/Source/core/frame/PlatformEventDispatcher.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/PlatformEventDispatcher.cpp
|
| @@ -48,7 +48,7 @@ void PlatformEventDispatcher::notifyControllers()
|
| return;
|
|
|
| {
|
| - TemporaryChange<bool> changeIsDispatching(m_isDispatching, true);
|
| + TemporaryChange<bool> changeIsDispatching(&m_isDispatching, true);
|
| // HashSet m_controllers can be updated during an iteration, and it stops the iteration.
|
| // Thus we store it into a Vector to access all elements.
|
| HeapVector<Member<PlatformEventController>> snapshotVector;
|
|
|