| Index: third_party/WebKit/Source/core/events/EventListenerMap.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/EventListenerMap.cpp b/third_party/WebKit/Source/core/events/EventListenerMap.cpp
|
| index 69939b38c41705630f1ff8727f16aa65020be2d5..ac78184c0b0566f6a457be90e3f70e4629b494fd 100644
|
| --- a/third_party/WebKit/Source/core/events/EventListenerMap.cpp
|
| +++ b/third_party/WebKit/Source/core/events/EventListenerMap.cpp
|
| @@ -134,8 +134,9 @@ static bool removeListenerFromVector(
|
| const auto begin = listenerVector->data();
|
| const auto end = begin + listenerVector->size();
|
|
|
| - // Do a manual search for the matching RegisteredEventListener. It is not possible to create
|
| - // a RegisteredEventListener on the stack because of the const on |listener|.
|
| + // Do a manual search for the matching RegisteredEventListener. It is not
|
| + // possible to create a RegisteredEventListener on the stack because of the
|
| + // const on |listener|.
|
| const auto it = std::find_if(
|
| begin, end, [listener, options](
|
| const RegisteredEventListener& eventListener) -> bool {
|
|
|