-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathResourceHandlerWrapper.h
More file actions
47 lines (37 loc) · 1.44 KB
/
ResourceHandlerWrapper.h
File metadata and controls
47 lines (37 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright © 2010 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#pragma once
#include "Stdafx.h"
#include "include/cef_scheme.h"
using namespace System::IO;
using namespace System::Collections::Specialized;
namespace CefSharp
{
public class ResourceHandlerWrapper : public CefResourceHandler
{
private:
gcroot<IResourceHandler^> _handler;
gcroot<IRequest^> _request;
Cookie^ GetCookie(const CefCookie& cookie);
public:
ResourceHandlerWrapper(IResourceHandler^ handler)
: _handler(handler)
{
}
~ResourceHandlerWrapper()
{
delete _handler;
_handler = nullptr;
delete _request;
_request = nullptr;
}
virtual bool ProcessRequest(CefRefPtr<CefRequest> request, CefRefPtr<CefCallback> callback) OVERRIDE;
virtual void GetResponseHeaders(CefRefPtr<CefResponse> response, int64& response_length, CefString& redirectUrl) OVERRIDE;
virtual bool ReadResponse(void* data_out, int bytes_to_read, int& bytes_read, CefRefPtr<CefCallback> callback) OVERRIDE;
virtual bool CanGetCookie(const CefCookie& cookie) OVERRIDE;
virtual bool CanSetCookie(const CefCookie& cookie) OVERRIDE;
virtual void Cancel() OVERRIDE;
IMPLEMENT_REFCOUNTING(ResourceHandlerWrapper);
};
}