RESOLVED FIXED 190675
BackForwardClient needs to be able to support UIProcess-only back/forward lists
https://bugs.webkit.org/show_bug.cgi?id=190675
Summary BackForwardClient needs to be able to support UIProcess-only back/forward lists
Alex Christensen
Reported 2018-10-17 12:03:17 PDT
BackForwardClient needs to be able to support UIProcess-only back/forward lists
Attachments
Patch (27.90 KB, patch)
2018-10-17 12:11 PDT, Alex Christensen
no flags
Patch (27.88 KB, patch)
2018-10-17 12:13 PDT, Alex Christensen
no flags
Patch (27.87 KB, patch)
2018-10-17 12:47 PDT, Alex Christensen
no flags
Patch (29.83 KB, patch)
2018-10-17 12:59 PDT, Alex Christensen
cdumez: review+
Alex Christensen
Comment 1 2018-10-17 12:11:11 PDT
Alex Christensen
Comment 2 2018-10-17 12:13:20 PDT
Alex Christensen
Comment 3 2018-10-17 12:47:34 PDT
Alex Christensen
Comment 4 2018-10-17 12:59:14 PDT
Alex Christensen
Comment 5 2018-10-17 13:37:50 PDT
Radar WebKit Bug Importer
Comment 6 2018-10-17 13:38:22 PDT
Daniel Bates
Comment 7 2018-10-17 13:53:56 PDT
Comment on attachment 352621 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=352621&action=review > Source/WebCore/ChangeLog:10 > + Also use unsigned for the back and forward list counts because they can never be negative. This may be true. I do not think this fact is best conveyed using unsigned. Data types should be chosen based on the range of representable values needed for the problem being solved. It seems a key design decision for this class was to expose a getter than takes a delta and every other decision falls out from this. Maybe this isn’t the right design, but it seems intuitive and it comes with a nice property as shown in the implementation of count(): “back count” + 1 “forward count” represents the entire range of an int. And this has another nice property that iterating over all items is a for-loop from -“back count” to “forward count” (seen in the webPage.cpp code). I find it hard to imagine a client would have anything close to 2^31 - 1 history items backwards and/or forwards, but I find it inconceivable that a client would have 2^32 - 1 items backwards and/or forwards.
Alex Christensen
Comment 8 2018-10-17 14:06:21 PDT
Well counts that are never less than zero certainly don't need to be signed.
Note You need to log in before you can comment on or make changes to this bug.