RESOLVED FIXED 112279
Small ResourceLoader cleanups
https://bugs.webkit.org/show_bug.cgi?id=112279
Summary Small ResourceLoader cleanups
Brady Eidson
Reported 2013-03-13 12:54:05 PDT
Two small ResourceLoader cleanups I noticed were worthwhile while working on a larger patch: 1 - Classes that derive from ResourceLoader should use OVERRIDE on the virtual methods they override. Important for catching mistakes in future refactoring. 2 - the "bool allAtOnce" flag is mysterious when reading code that has just "true" or "false", so change it to an enum that encapsulates what it means.
Attachments
Patch v1 (25.50 KB, patch)
2013-03-13 12:59 PDT, Brady Eidson
ggaren: review+
Brady Eidson
Comment 1 2013-03-13 12:59:39 PDT
Created attachment 192972 [details] Patch v1
Geoffrey Garen
Comment 2 2013-03-13 13:03:35 PDT
Comment on attachment 192972 [details] Patch v1 View in context: https://bugs.webkit.org/attachment.cgi?id=192972&action=review r=me > Source/WebCore/loader/ResourceLoaderTypes.h:27 > +#ifndef ResourceLoaderTypes_h > +#define ResourceLoaderTypes_h Are more types going in this header? If not, it should be named "DataPayloadType.h". > Source/WebCore/loader/ResourceLoaderTypes.h:32 > +// - DataPayloadWholeResource is expected when the buffer points to a whole resource. There will only be one such didReceiveData callback for the load. "is expected" is a little strong in this context. DataPayloadWholeResource is an optimization that happens sometimes. We don't have a specific expectation about how often. I would say, "DataPayloadWholeResource indicates that the buffer points...". > Source/WebCore/loader/ResourceLoaderTypes.h:33 > +// - DataPayloadBytes is expected when the buffer points to a range of bytes, which may or may not be a whole resource. I would use "indicates" here as well.
Brady Eidson
Comment 3 2013-03-13 13:08:58 PDT
(In reply to comment #2) > (From update of attachment 192972 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=192972&action=review > > r=me > > > Source/WebCore/loader/ResourceLoaderTypes.h:27 > > +#ifndef ResourceLoaderTypes_h > > +#define ResourceLoaderTypes_h > > Are more types going in this header? If not, it should be named "DataPayloadType.h". At least one other will be in the extremely near future. > > > Source/WebCore/loader/ResourceLoaderTypes.h:32 > > +// - DataPayloadWholeResource is expected when the buffer points to a whole resource. There will only be one such didReceiveData callback for the load. > > "is expected" is a little strong in this context. DataPayloadWholeResource is an optimization that happens sometimes. We don't have a specific expectation about how often. I would say, "DataPayloadWholeResource indicates that the buffer points...". > > > Source/WebCore/loader/ResourceLoaderTypes.h:33 > > +// - DataPayloadBytes is expected when the buffer points to a range of bytes, which may or may not be a whole resource. > > I would use "indicates" here as well. Done and done. Thanks!
Brady Eidson
Comment 4 2013-03-13 14:39:44 PDT
http://trac.webkit.org/changeset/145753, but I accidentally hadn't git commited the comment change. Will follow up.
Brady Eidson
Comment 5 2013-03-13 14:43:35 PDT
Note You need to log in before you can comment on or make changes to this bug.