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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/renderer/renderer_webcookiejar_impl.h"
#include "chrome/common/render_messages.h"
#include "chrome/renderer/render_thread.h"
#include "third_party/WebKit/WebKit/chromium/public/WebCookie.h"
using WebKit::WebCookie;
using WebKit::WebString;
using WebKit::WebURL;
using WebKit::WebVector;
void RendererWebCookieJarImpl::setCookie(
const WebURL& url, const WebURL& first_party_for_cookies,
const WebString& value) {
std::string value_utf8;
UTF16ToUTF8(value.data(), value.length(), &value_utf8);
sender_->Send(new ViewHostMsg_SetCookie(
MSG_ROUTING_NONE, url, first_party_for_cookies, value_utf8));
}
WebString RendererWebCookieJarImpl::cookies(
const WebURL& url, const WebURL& first_party_for_cookies) {
std::string value_utf8;
// NOTE: This may pump events (see RenderThread::Send).
sender_->Send(new ViewHostMsg_GetCookies(
MSG_ROUTING_NONE, url, first_party_for_cookies, &value_utf8));
return WebString::fromUTF8(value_utf8);
}
WebString RendererWebCookieJarImpl::cookieRequestHeaderFieldValue(
const WebURL& url, const WebURL& first_party_for_cookies) {
return cookies(url, first_party_for_cookies);
}
void RendererWebCookieJarImpl::rawCookies(
const WebURL& url, const WebURL& first_party_for_cookies,
WebVector<WebCookie>& raw_cookies) {
std::vector<webkit_glue::WebCookie> cookies;
// NOTE: This may pump events (see RenderThread::Send).
sender_->Send(new ViewHostMsg_GetRawCookies(
MSG_ROUTING_NONE, url, first_party_for_cookies, &cookies));
WebVector<WebCookie> result(cookies.size());
int i = 0;
for (std::vector<webkit_glue::WebCookie>::iterator it = cookies.begin();
it != cookies.end(); ++it) {
result[i++] = WebCookie(WebString::fromUTF8(it->name),
WebString::fromUTF8(it->value),
WebString::fromUTF8(it->domain),
WebString::fromUTF8(it->path),
it->expires,
it->http_only,
it->secure,
it->session);
}
raw_cookies.swap(result);
}
void RendererWebCookieJarImpl::deleteCookie(
const WebURL& url, const WebString& cookie_name) {
std::string cookie_name_utf8;
UTF16ToUTF8(cookie_name.data(), cookie_name.length(), &cookie_name_utf8);
sender_->Send(new ViewHostMsg_DeleteCookie(url, cookie_name_utf8));
}
bool RendererWebCookieJarImpl::cookiesEnabled(
const WebURL& url, const WebURL& first_party_for_cookies) {
bool enabled;
sender_->Send(new ViewHostMsg_GetCookiesEnabled(
url, first_party_for_cookies, &enabled));
return enabled;
}
|