-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Use DoublyLinkedList instead of ListHashSet in DocumentState"
This reverts commit 252e8a4. Reason for revert: Caused http://crbug.com/790739 Original change's description: > Use DoublyLinkedList instead of ListHashSet in DocumentState > > The only operations carried out on form_controls_ are insertions, removals > and iterating through the entire list. Insertion and removal can be done > faster with a DoublyLinkedList. > > Since the nodes for the DoublyLinkedList are Oilpan objects, this CL > introduces HeapDoublyLinkedList that uses Member for the head and tail > pointers, and traces the pointers. > > This improves the performance of HTMLInputElement::InsertedInto and > HTMLInputElement::RemovedFrom by ~15%. > > Bug: > Change-Id: I5b4cd20737e0276bece2430edfb7ec9609690f04 > Reviewed-on: https://chromium-review.googlesource.com/758877 > Reviewed-by: Kentaro Hara <haraken@chromium.org> > Reviewed-by: Keishi Hattori <keishi@chromium.org> > Reviewed-by: Jeremy Roman <jbroman@chromium.org> > Commit-Queue: Adithya Srinivasan <adithyas@chromium.org> > Cr-Commit-Position: refs/heads/master@{#517876} Bug: 790739 TBR=jbroman@chromium.org,haraken@chromium.org,keishi@chromium.org,adithyas@chromium.org,lfg@chromium.org Change-Id: I48ddedd7b356efa6b1f6f69c58e2022e9a0872f1 Reviewed-on: https://chromium-review.googlesource.com/802774 Commit-Queue: Kenneth Russell <kbr@chromium.org> Reviewed-by: Kenneth Russell <kbr@chromium.org> Reviewed-by: Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#520840}
- Loading branch information
1 parent
ea32dd9
commit 5fdc0fa
Showing
9 changed files
with
49 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters