Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[curl] Fix build. #41

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/WebKit2/Shared/curl/WebCoreArgumentCodersCurl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

using namespace WebCore;

namespace CoreIPC {
namespace IPC {

void ArgumentCoder<CertificateInfo>::encode(ArgumentEncoder& encoder, const CertificateInfo& certificateInfo)
{
Expand Down
6 changes: 3 additions & 3 deletions Source/WebKit2/WebProcess/curl/WebCurlRequestManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace WebKit {

class WebProcess;

class WebCurlRequestManager : public WebProcessSupplement, private CoreIPC::MessageReceiver {
class WebCurlRequestManager : public WebProcessSupplement, private IPC::MessageReceiver {
WTF_MAKE_NONCOPYABLE(WebCurlRequestManager);
public:
explicit WebCurlRequestManager(WebProcess*);
Expand All @@ -37,8 +37,8 @@ class WebCurlRequestManager : public WebProcessSupplement, private CoreIPC::Mess
static const char* supplementName();

private:
// CoreIPC::MessageReceiver
void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) OVERRIDE;
// IPC::MessageReceiver
void didReceiveMessage(IPC::Connection*, IPC::MessageDecoder&) OVERRIDE;

void setHostAllowsAnyHTTPSCertificate(const String&);

Expand Down
2 changes: 1 addition & 1 deletion Source/WebKit2/WebProcess/curl/WebProcessCurl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void WebProcess::platformClearResourceCaches(ResourceCachesToClear)
// implement
}

void WebProcess::platformInitializeWebProcess(const WebProcessCreationParameters& parameters, CoreIPC::MessageDecoder&)
void WebProcess::platformInitializeWebProcess(const WebProcessCreationParameters& parameters, IPC::MessageDecoder&)
{
WebCore::CookieManager::getInstance().setCookieJarPath(parameters.cookieStorageDirectory);

Expand Down