DescriptionUtilize std::move(scoped_ptr) while using it with ScopedVector.
Substituted pattern ScopedVector push_back(ptr.release()) with push_back(ptr.Pass()) in the following directories: /src/ui/events/gesture_detection and /src/content/browser/renderer_host
Updated the change by substituting pattern ScopedVector push_back(ptr.Pass()) with push_back(std::move(ptr)).
BUG=457697
BUG=557422
Committed: https://crrev.com/eb97229a6a4a1fde4723581119589d9d37f119a4
Cr-Commit-Position: refs/heads/master@{#372926}
Patch Set 1 #Patch Set 2 : Utilize std::move(scoped_ptr) instead of scoped_ptr.Pass() as per the Bug=557422 #Patch Set 3 : Adding my name to AUTHORS list #Patch Set 4 : Resolving build issues #
Messages
Total messages: 24 (15 generated)
|