Bug 100708 - [WK2] Add a NetworkingContext for NetworkProcess
Summary: [WK2] Add a NetworkingContext for NetworkProcess
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit2 (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Alexey Proskuryakov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-10-29 15:55 PDT by Alexey Proskuryakov
Modified: 2012-10-29 16:18 PDT (History)
1 user (show)

See Also:


Attachments
proposed patch (10.56 KB, patch)
2012-10-29 16:01 PDT, Alexey Proskuryakov
andersca: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Alexey Proskuryakov 2012-10-29 15:55:39 PDT
ResourceHandle needs a NetworkingContext to operate, so we need to have something suitable for NetworkProcess.
Comment 1 Alexey Proskuryakov 2012-10-29 16:01:19 PDT
Created attachment 171331 [details]
proposed patch
Comment 2 Anders Carlsson 2012-10-29 16:15:28 PDT
Comment on attachment 171331 [details]
proposed patch

View in context: https://bugs.webkit.org/attachment.cgi?id=171331&action=review

> Source/WebKit2/NetworkProcess/mac/RemoteNetworkingContext.h:43
> +    virtual bool isValid() const;
> +
> +    virtual bool needsSiteSpecificQuirks() const;
> +    virtual bool localFileContentSniffingEnabled() const;
> +    virtual WebCore::SchedulePairHashSet* scheduledRunLoopPairs() const;
> +    virtual WebCore::ResourceError blockedError(const WebCore::ResourceRequest&) const;

These should all be marked OVERRIDE.
Comment 3 Alexey Proskuryakov 2012-10-29 16:18:50 PDT
Committed <http://trac.webkit.org/changeset/132857>.