Changeset 69042 in webkit


Ignore:
Timestamp:
Oct 4, 2010 3:19:35 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-10-04 Adam Barth <abarth@webkit.org>

Reviewed by Darin Adler.

ResourceHandle's public/protected/private sections are fragmented
https://bugs.webkit.org/show_bug.cgi?id=47038

Minor cleanup.

  • platform/network/ResourceHandle.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r69041 r69042  
     12010-10-04  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        ResourceHandle's public/protected/private sections are fragmented
     6        https://bugs.webkit.org/show_bug.cgi?id=47038
     7
     8        Minor cleanup.
     9
     10        * platform/network/ResourceHandle.h:
     11
    1122010-10-04  Alexey Proskuryakov  <ap@apple.com>
    213
  • trunk/WebCore/platform/network/ResourceHandle.h

    r68371 r69042  
    9595#endif
    9696    {
    97 protected:
    98     ResourceHandle(const ResourceRequest&, ResourceHandleClient*, bool defersLoading, bool shouldContentSniff);
    99 
    100 private:
    101     enum FailureType {
    102         NoFailure,
    103         BlockedFailure,
    104         InvalidURLFailure
    105     };
    106 
    10797public:
    10898    static PassRefPtr<ResourceHandle> create(NetworkingContext*, const ResourceRequest&, ResourceHandleClient*, bool defersLoading, bool shouldContentSniff);
     
    200190    using RefCounted<ResourceHandle>::deref;
    201191
     192protected:
     193    ResourceHandle(const ResourceRequest&, ResourceHandleClient*, bool defersLoading, bool shouldContentSniff);
     194
    202195private:
     196    enum FailureType {
     197        NoFailure,
     198        BlockedFailure,
     199        InvalidURLFailure
     200    };
     201
    203202    void platformSetDefersLoading(bool);
    204203
Note: See TracChangeset for help on using the changeset viewer.