Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(794)

Unified Diff: third_party/WebKit/Source/core/events/EventListenerMap.cpp

Issue 2394653003: reflow comments in core/events,core/fileapi (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {
« no previous file with comments | « third_party/WebKit/Source/core/events/EventDispatcher.cpp ('k') | third_party/WebKit/Source/core/events/EventPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698